Skip to main content
GET
/
account
Get account info
curl --request GET \
  --url https://console.cloudblast.io/api/v2/account \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 1,
    "name": "John",
    "surname": "Doe",
    "email": "john@example.com",
    "credit": 42.5,
    "ram_limit": 64,
    "core_limit": 32,
    "ip_limit": 10,
    "backup_limit": 20
  }
}

Authorizations

Authorization
string
header
required

API token from your CloudBlast account settings. Pass as Authorization: Bearer <token>.

Response

Account information

data
object