Skip to main content
POST
/
api
/
v1
/
users
/
signup
Register User
curl --request POST \
  --url https://api.example.com/api/v1/users/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>",
  "full_name": "<string>",
  "accept_terms": false
}
'
{
  "email": "jsmith@example.com",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "is_active": true,
  "is_superuser": false,
  "is_paid": false,
  "full_name": "<string>",
  "role": "standard",
  "created_at": "2023-11-07T05:31:56Z"
}

Body

application/json
email
string<email>
required
Maximum string length: 255
password
string
required
Required string length: 8 - 128
full_name
string | null
Maximum string length: 255
accept_terms
boolean
default:false

User accepted Terms & Conditions

Response

Successful Response

email
string<email>
required
Maximum string length: 255
id
string<uuid>
required
is_active
boolean
default:true
is_superuser
boolean
default:false
is_paid
boolean
default:false
full_name
string | null
Maximum string length: 255
role
enum<string>
default:standard

Role controls non-admin account policies

Available options:
standard,
sandbox
created_at
string<date-time> | null
Last modified on May 25, 2026