API Plan & Usage Status
curl --request GET \
--url https://api.cryptorank.io/v3/status \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cryptorank.io/v3/status"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.cryptorank.io/v3/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cryptorank.io/v3/status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.cryptorank.io/v3/status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.cryptorank.io/v3/status")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cryptorank.io/v3/status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"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",
"endpoints": [
"/v3/currencies/list",
"/v3/currencies/map",
"/v3/currencies/{id}",
"/v3/global/market"
]
}{
"error": {
"code": "API_KEY_MISSING",
"message": "API key is missing",
"status": 401
}
}{
"error": {
"code": "NO_ACTIVE_SUBSCRIPTION",
"message": "No active subscription found",
"status": 403
}
}System
API Plan & Usage Status
Returns the authenticated user’s current plan, rate limit (RPM), and credit usage for the active billing period.
Available from: Sandbox
Cost: Free
GET
/
v3
/
status
API Plan & Usage Status
curl --request GET \
--url https://api.cryptorank.io/v3/status \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cryptorank.io/v3/status"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.cryptorank.io/v3/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cryptorank.io/v3/status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.cryptorank.io/v3/status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.cryptorank.io/v3/status")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cryptorank.io/v3/status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"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",
"endpoints": [
"/v3/currencies/list",
"/v3/currencies/map",
"/v3/currencies/{id}",
"/v3/global/market"
]
}{
"error": {
"code": "API_KEY_MISSING",
"message": "API key is missing",
"status": 401
}
}{
"error": {
"code": "NO_ACTIVE_SUBSCRIPTION",
"message": "No active subscription found",
"status": 403
}
}Poll it to monitor quota and build adaptive request throttling.
Authorizations
Response
Subscription plan name
Example:
"Business"
User's current rate limit, requests per minute
Example:
200
Monthly and daily credit usage for the user
Show child attributes
Show child attributes
Start of the current credit period, inclusive. ISO 8601
Example:
"2026-05-11T07:38:09.723Z"
End of the current credit period. ISO 8601
Example:
"2026-06-11T07:38:09.723Z"
API endpoints available on the current plan, as path templates
Example:
[
"/v3/currencies/list",
"/v3/currencies/map",
"/v3/currencies/{id}",
"/v3/global/market"
]
⌘I