User signup

POST /api/v11/signup

Create an account

application/json

Body

Responses

  • 200 application/json

    Access token to be used with the rest of the API

    Hide response attributes Show response attributes object
  • 400 application/json

    Bad request

    Hide response attributes Show response attributes object
    • success boolean Required

      Default value is false.

    • error string Required

      Value is One or more API parameters are malformed. Please check your request and try again.

  • 429 application/json

    User exceeded the message limit for their current plan

    One of:
POST /api/v11/signup
curl \
 -X POST https://chat-api.aurora-interactive.online:8443/api/v11/signup \
 -H "Content-Type: application/json" \
 -d '{"username":"string","email":"string","password":"string"}'
Request examples
{
  "username": "string",
  "email": "string",
  "password": "string"
}
Response examples (200)
{
  "success": true,
  "accessToken": "string"
}
Response examples (400)
{
  "success": false,
  "error": "One or more API parameters are malformed. Please check your request and try again"
}
Response examples (429)
{
  "success": false,
  "error": "You have exceeded your Message/TTS quota. To send more messages, please upgrade your plan or wait until your subscription renews."
}
{
  "statusCode": 42,
  "error": "string",
  "message": "string"
}