Endpoint Playground
Test Crawlora's CoinGecko Global Charts API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/coingecko/global/charts?kind=total_market_cap&range=24h" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| kind | string | No | total_market_cap | Chart kind, default total_market_cap |
| range | string | No | 24h | Chart range, default 90d |
| limit | integer | No | Rows per series to return, default 120, max 500 |
{
"code": 200,
"msg": "OK",
"data": {
"kind": "total_market_cap",
"range": "90d",
"limit": 120,
"source_url": "https://www.coingecko.com/market_cap/total_charts_data?locale=en&vs_currency=usd",
"fetched_at": "2026-05-24T00:00:00Z",
"series": [
{
"name": "market_cap",
"points": [
{
"timestamp": 1779556795943,
"datetime": "2026-05-24T00:00:00Z",
"value": 2670000000000
}
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized global chart series from public CoinGecko website JSON endpoints.
{
"code": 200,
"msg": "OK",
"data": {
"kind": "total_market_cap",
"range": "90d",
"limit": 120,
"source_url": "https://www.coingecko.com/market_cap/total_charts_data?locale=en&vs_currency=usd",
"fetched_at": "2026-05-24T00:00:00Z",
"series": [
{
"name": "market_cap",
"points": [
{
"timestamp": 1779556795943,
"datetime": "2026-05-24T00:00:00Z",
"value": 2670000000000
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/global/charts" \
-H "x-api-key: $CRAWLORA_API_KEY"