Authentication
POST
/api/v1/auth/signup

Create a new User + Organization pair and return a login token.

Only available in OSS/self-hosted deployments where auth.local_password.allow_signup = true (the default). Cloud SaaS turns this off and routes signup through the billing flow.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/v1/auth/signup" \  -H "Content-Type: application/json" \  -d '{    "email": "user@example.com",    "password": "stringst"  }'
{  "access_token": "string",  "refresh_token": "string",  "token_type": "Bearer",  "expires_in": 0,  "user": {    "id": "string",    "email": "string",    "name": "string",    "first_name": "string",    "last_name": "string",    "organization_id": "string",    "role": "string",    "has_password": false,    "email_is_placeholder": false  }}

Community & contact

  1. Found a bug or have a feature request? Open a GitHub issue.
  2. Join our Discord for faster replies!