Skip to main content
POST
/
auth
/
signup
Sign Up
curl --request POST \
  --url https://api.example.com/auth/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "<string>",
  "email": "jsmith@example.com",
  "password": "<string>",
  "role": "business"
}
'
{
  "user_id": "<string>",
  "username": "<string>",
  "email": "<string>",
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Sign up request model.

username
string
required
Required string length: 3 - 50
email
string<email>
required
password
string
required
Required string length: 8 - 72
role
enum<string>
default:business

User role enumeration.

Available options:
business,
developer,
admin

Response

Successful Response

Sign up response model.

user_id
string
required
username
string
required
email
string
required
role
enum<string>
required

User role enumeration.

Available options:
business,
developer,
admin
message
string
required