Skip to main content
GET
/
v3
/
status
API Plan & Usage Status
curl --request GET \
  --url https://api.cryptorank.io/v3/status \
  --header 'X-Api-Key: <api-key>' \
  --header 'x-api-key: <x-api-key>'
{
  "plan": "Business",
  "rateLimitPerMinute": 200,
  "credits": {
    "dailyLimit": 250000,
    "dailyUsed": 1200,
    "dailyRemaining": 248800,
    "monthlyLimit": 5000000,
    "monthlyUsed": 4200,
    "monthlyRemaining": 4995800
  },
  "currentPeriodStart": "2026-05-11T07:38:09.723Z",
  "currentPeriodEnd": "2026-06-11T07:38:09.723Z"
}

Authorizations

X-Api-Key
string
header
required

Headers

x-api-key
string
required

Response

plan
string
required

Subscription plan name

Example:

"Business"

rateLimitPerMinute
number
required

User's current rate limit, requests per minute

Example:

200

credits
object
required

Monthly and daily credit usage for the user

currentPeriodStart
string
required

Start of the current credit period, inclusive. ISO 8601

Example:

"2026-05-11T07:38:09.723Z"

currentPeriodEnd
string
required

End of the current credit period. ISO 8601

Example:

"2026-06-11T07:38:09.723Z"