Skip to main content
POST
/
auth
/
signup
Register a new user
curl --request POST \
  --url https://api.example.com/auth/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "password": "<string>"
}
'

Body

application/json
email
string
required
password
string
required

Response

201 - undefined