Skip to main content
POST
/
auth
/
register
Register for a new account
curl --request POST \
  --url https://open.beatpass.ca/api/v1/auth/register \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "password": "password",
  "token_name": "iphone 12"
}
'
{
  "status": "success",
  "user": {
    "id": 123,
    "display_name": "<string>",
    "avatar": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string
password
string
Example:

"password"

token_name
string
Example:

"iphone 12"

Response

User registered

status
string
Example:

"success"

user
object
Last modified on November 29, 2025