API Usage
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/key \
--header 'x-cg-pro-api-key: <api-key>'{
"plan": "Other",
"rate_limit_request_per_minute": 1000,
"monthly_call_credit": 1000000,
"current_total_monthly_calls": 32,
"current_remaining_monthly_calls": 999968,
"api_key_rate_limit_request_per_minute": 1000,
"api_key_monthly_call_credit": 1000000,
"api_key_current_total_monthly_calls": 8
}Utility
API Usage
To monitor your account’s API usage, including rate limits, monthly total credits, remaining credits, and more
GET
/
key
API Usage
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/key \
--header 'x-cg-pro-api-key: <api-key>'{
"plan": "Other",
"rate_limit_request_per_minute": 1000,
"monthly_call_credit": 1000000,
"current_total_monthly_calls": 32,
"current_remaining_monthly_calls": 999968,
"api_key_rate_limit_request_per_minute": 1000,
"api_key_monthly_call_credit": 1000000,
"api_key_current_total_monthly_calls": 8
}For a more comprehensive overview of your API usage, visit the Developer Dashboard.
SDK Examples
const response = await client.key.get();
console.log(JSON.stringify(response, null, 2));
Authorizations
headerAuthqueryAuth
Learn how to set up your API key
Response
200 - application/json
API usage
Current subscription plan
Rate limit per minute for the plan
Total monthly API call credits for the plan
Total API calls made this month
Remaining API call credits this month
Rate limit per minute configured for this API key
Monthly call credit limit configured for this API key
Total API calls made this month by this API key
Was this page helpful?
⌘I

