Skip to main content
POST
/
v1
/
auth
/
register
Register a new account
curl --request POST \
  --url https://api.shelv.dev/v1/auth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "name": "<string>",
  "password": "<string>"
}
'
{
  "message": "<string>"
}

Body

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

Response

Email sent

message
string
required