Team accounts with unlimited members now available to everyone! Invite your teammates and ship faster together, even on the Free Plan.
/Neon Auth/Manage Auth via the API

Manage Neon Auth via the API

Enable, configure, and disable Neon Auth using the Neon API

Beta

The Neon Auth with Better Auth is in Beta. Share your feedback on Discord or via the Neon Console.

You can manage Neon Auth programmatically using the Neon API.

note

Neon Auth operates at the branch level. Each branch can have its own independent auth configuration, which means preview and development branches can have separate auth state from your production branch.

Prerequisites

All requests use the base URL https://console.neon.tech/api/v2 and require the Authorization: Bearer $NEON_API_KEY header. The project_id and branch_id values are returned when you create a project or list branches via the API.

Enable Neon Auth

Send a POST request to enable Neon Auth on a branch:

curl -X POST 'https://console.neon.tech/api/v2/projects/{project_id}/branches/{branch_id}/auth' \
  -H 'Authorization: Bearer $NEON_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"auth_provider": "better_auth"}'

Response (201 Created):

{
  "auth_provider": "better_auth",
  "auth_provider_project_id": "cab6949a-10e3-4d25-a879-512beed281e3",
  "pub_client_key": "",
  "secret_server_key": "",
  "jwks_url": "https://ep-example.neonauth.us-east-1.aws.neon.tech/neondb/auth/.well-known/jwks.json",
  "schema_name": "neon_auth",
  "table_name": "users_sync",
  "base_url": "https://ep-example.neonauth.us-east-1.aws.neon.tech/neondb/auth"
}

The response includes:

FieldDescription
auth_providerThe configured provider (better_auth)
auth_provider_project_idUnique ID for the auth provider instance
pub_client_keyPublic client key (shown once at creation, may be empty for better_auth)
secret_server_keySecret server key (shown once at creation, may be empty for better_auth)
jwks_urlJWKS endpoint for JWT verification
schema_nameDatabase schema created for auth tables (neon_auth)
table_nameTable name for synced user data (users_sync)
base_urlBase URL of the auth service, used for SDK configuration and the interactive API reference (/reference)

important

The enable response is the only time the API returns pub_client_key and secret_server_key. Store them securely. Subsequent GET requests do not include these fields.

If Neon Auth is already enabled on the branch, this call returns an error.

Using a non-default database

By default, Neon Auth uses the branch's default database. To target a different database, add database_name to the request body: {"auth_provider": "better_auth", "database_name": "my_other_db"}

Get Auth configuration

Retrieve the current Neon Auth configuration for a branch:

curl -X GET 'https://console.neon.tech/api/v2/projects/{project_id}/branches/{branch_id}/auth' \
  -H 'Authorization: Bearer $NEON_API_KEY'

Response (200 OK):

{
  "auth_provider": "better_auth",
  "auth_provider_project_id": "cab6949a-10e3-4d25-a879-512beed281e3",
  "branch_id": "br-example-abc123",
  "db_name": "neondb",
  "created_at": "2026-02-26T04:29:05Z",
  "owned_by": "neon",
  "jwks_url": "https://ep-example.neonauth.us-east-1.aws.neon.tech/neondb/auth/.well-known/jwks.json",
  "base_url": "https://ep-example.neonauth.us-east-1.aws.neon.tech/neondb/auth"
}

Disable Neon Auth

Send a DELETE request to disable Neon Auth on a branch:

curl -X DELETE 'https://console.neon.tech/api/v2/projects/{project_id}/branches/{branch_id}/auth' \
  -H 'Authorization: Bearer $NEON_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"delete_data": true}'

Response (200 OK): Empty body.

The delete_data field controls whether the system removes the neon_auth schema from your database:

  • true: Deletes the neon_auth schema and all auth tables (users, sessions, accounts).
  • false (default): Disables the auth service but leaves the schema and data intact. You can re-enable later without losing user data.

warning

Setting delete_data to true permanently removes all auth data from the database. You cannot undo this.

The Neon API also provides endpoints for managing auth configuration at the branch level. These are available at https://console.neon.tech/api/v2/projects/{project_id}/branches/{branch_id}/auth/...:

EndpointMethodsDescription
/domainsGET, POST, DELETEManage trusted redirect domains
/oauth_providersGET, POST, PATCH, DELETEConfigure OAuth providers (Google, GitHub, etc.)
/email_providerGET, PATCHConfigure the email provider
/email_and_passwordGET, PATCHConfigure email/password authentication
/usersPOST, DELETE, PUTCreate, delete, and manage user roles
/pluginsGET, PATCHView and configure auth plugins
/webhooksGET, PUTConfigure webhook notifications
/allow_localhostGET, PATCHToggle localhost access for development
/send_test_emailPOSTSend a test email to verify email configuration

For full request/response details on these endpoints, see the interactive API reference.

TypeScript SDK

You can also manage Neon Auth using the Neon TypeScript SDK.

Was this page helpful?
Edit on GitHub