Skip to main content
GET
/
v1
/
data
/
account
Account health and credit status
curl --request GET \
  --url https://api.aws53.cloud/v1/data/account \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "healthy": true,
    "organization": {
      "name": "<string>",
      "status": "<string>"
    },
    "credits": {
      "used": 123,
      "limit": 123,
      "remaining": 123,
      "percentUsed": 123,
      "resetsAt": "<string>"
    },
    "pixels": {
      "total": 123,
      "active": 123,
      "paused": 123
    }
  }
}

Authorizations

X-API-Key
string
header
required

Organization API key (sk_...). Get yours from Settings > API Keys in the dashboard.

Response

200 - application/json

Account status

data
object
required