Skip to main content
POST
/
v1
/
auth
/
register
Register a new user
curl --request POST \
  --url https://api.chicklet.io/v1/auth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>"
}
'
{
  "id": 123,
  "email": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Body

application/json
email
string<email>
required
password
string<password>
required

Response

Created

id
integer
email
string
created_at
string<date-time>