v9

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-01211389.1 KB

New user

Create a whitelabel account.

post/users

Request body

emailstring email required

The email address of the user to create an account for; the address is case insensitive and can be in any character encoding.

creditsinteger

The number of API credits to preload the account with.

Example request

{
  "email": "user@example.com",
  "credits": 1000
}

Response

The new account metadata.

emailstring email required

The email address of the new account as recorded by the API.

tokenstring required

The bearer token issued to the account for authentication.

creditsinteger required

The number of initial credits granted to the account.

Example response

{
  "email": "user@example.com",
  "token": "a1-0dF6qKHYD7SNU5kAtjOmwHpH3iFgpylA",
  "credits": 1000
}