Skip to main content
POST
/
auth
/
register
Register
curl --request POST \
  --url https://api.nova-cloud.ai/auth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>"
}
'
{
  "id": 123,
  "email": "jsmith@example.com",
  "tier": "standard",
  "max_vms": 3,
  "max_hourly_spend": 8,
  "credit_balance": 125.5,
  "status": "active",
  "created_at": "2023-11-07T05:31:56Z",
  "totp_enabled": true,
  "email_verified": true,
  "auth_provider": "email"
}

Body

application/json
email
string<email>
required

Email address

password
string
required

Password (minimum 12 characters)

Minimum string length: 12

Response

Account created successfully

id
integer

User ID

email
string<email>
tier
string
Example:

"standard"

max_vms
integer
Example:

3

max_hourly_spend
number
Example:

8

credit_balance
number
Example:

125.5

status
string
Example:

"active"

created_at
string<date-time>
totp_enabled
boolean
email_verified
boolean
auth_provider
string
Example:

"email"