> This page location: Backend > Data API > Introduction > Overview > Full Neon documentation index: https://neon.com/docs/llms.txt # Neon Data API A fully managed REST interface for your Neon database **Note: Beta** The **Neon Data API** is in Beta. Share your feedback on [Discord](https://discord.gg/92vNTzKDGp) or via the [Neon Console](https://console.neon.tech/app/projects?modal=feedback). The Neon Data API provides a secure, stateless HTTP interface to your database. It allows you to access and manage your data directly from web browsers, serverless functions, and edge runtimes using standard HTTP methods. Key benefits include: - **Browser & edge compatibility** Standard Postgres drivers do not work in web browsers and struggle in edge runtimes. The Data API allows you to query your database from Cloudflare Workers, Vercel Edge, or directly from a browser-based frontend using standard HTTP requests. - **Connectionless scalability** Eliminate connection pool exhaustion. Because the API uses short-lived HTTP requests instead of persistent TCP connections, it effortlessly handles thousands of concurrent users and serverless auto-scaling. - **Secure by default** The API is designed to expose your database safely. It integrates with Neon Auth and respects PostgreSQL [Row-Level Security (RLS)](https://neon.com/docs/guides/row-level-security) policies, ensuring users only access the data they are explicitly permitted to see. - **CI/CD integration** Test your Data API integrations in isolated branch environments using the [Neon Create Branch GitHub Action](https://github.com/marketplace/actions/neon-create-branch-github-action), which can retrieve branch-specific Data API URLs for your workflows. ## PostgREST compatibility The Neon Data API is fully compatible with [PostgREST](https://postgrest.org/en/stable/). This compatibility allows you to query your database using any standard HTTP client (such as Postman or `cURL`) or integrate easily using client libraries, including [`@neondatabase/neon-js`](https://www.npmjs.com/package/@neondatabase/neon-js) and [`@neondatabase/postgrest-js`](https://www.npmjs.com/package/@neondatabase/postgrest-js). ## Quickstart - [Get Started](https://neon.com/docs/data-api/get-started): Learn how to enable and use the Neon Data API with step-by-step instructions. - [Tutorial](https://neon.com/docs/data-api/demo): Explore our demo note-taking app to learn Data API queries with RLS. - [Neon Auth & Data API TypeScript SDKs](https://neon.com/docs/reference/javascript-sdk): Complete reference for authentication and database query methods. - [SQL to REST Converter](https://neon.com/docs/data-api/sql-to-rest): Convert SQL queries into RESTful HTTP requests. - [Generate Types](https://neon.com/docs/data-api/generate-types): Generate TypeScript types from your database schema for type-safe queries. --- ## Related docs (Introduction) - [Get started](https://neon.com/docs/data-api/get-started)