Skip to main content
POST
/
api
/
v1
/
auth
/
basic
/
signup
Basic Signup
curl --request POST \
  --url https://api.example.com/api/v1/auth/basic/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>",
  "name": "<string>"
}
'
{}

Body

application/json
email
string<email>
required
password
string
required
Minimum string length: 8
name
string | null

Response

Successful Response

The response is of type Response Basic Signup Api V1 Auth Basic Signup Post · object.

Last modified on March 22, 2026