Skip to main content
POST
/
api
/
auth
/
signup
Sign up a new user
curl --request POST \
  --url https://api.example.com/api/auth/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "John",
  "lastName": "Doe",
  "email": "[email protected]",
  "password": "password123"
}
'

Body

application/json
firstName
string
required

User first name

Example:

"John"

lastName
string
required

User last name

Example:

"Doe"

email
string
required

User email address

password
string
required

User password

Example:

"password123"

Response

201

Sign-up initiated. Check email for confirmation.