VOOZH about

URL: https://docs.coingecko.com/reference/api-usage

⇱ API Usage - CoinGecko API


Documentation Index

Fetch the complete documentation index at: /llms.txt

Use this file to discover all available pages before exploring further.

Skip to main content
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
}
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

x-cg-pro-api-key
string
header
required

Learn how to set up your API key

Response

200 - application/json

API usage

plan
string
required

Current subscription plan

rate_limit_request_per_minute
integer
required

Rate limit per minute for the plan

monthly_call_credit
integer
required

Total monthly API call credits for the plan

current_total_monthly_calls
integer
required

Total API calls made this month

current_remaining_monthly_calls
integer
required

Remaining API call credits this month

api_key_rate_limit_request_per_minute
integer
required

Rate limit per minute configured for this API key

api_key_monthly_call_credit
integer
required

Monthly call credit limit configured for this API key

api_key_current_total_monthly_calls
integer
required

Total API calls made this month by this API key

Was this page helpful?