Endpoint Playground
Test Crawlora's CoinGecko Global 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" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"market_cap_usd": 2670000000000,
"market_cap_change_24h_percent": 1.2,
"market_cap_change_1y_percent": 68.4,
"bitcoin_market_cap_usd": 1350000000000,
"bitcoin_dominance_percent": 50.6,
"ethereum_dominance_percent": 17.2,
"stablecoin_market_cap_usd": 161000000000,
"stablecoin_share_percent": 6.03,
"coins_tracked": 17677,
"exchanges_tracked": 1233,
"categories_tracked": 308,
"source_url": "https://www.coingecko.com/en/charts",
"fetched_at": "2026-05-24T00:00:00Z"
}
}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 market metrics from CoinGecko's public charts page.
{
"code": 200,
"msg": "OK",
"data": {
"market_cap_usd": 2670000000000,
"market_cap_change_24h_percent": 1.2,
"market_cap_change_1y_percent": 68.4,
"bitcoin_market_cap_usd": 1350000000000,
"bitcoin_dominance_percent": 50.6,
"ethereum_dominance_percent": 17.2,
"stablecoin_market_cap_usd": 161000000000,
"stablecoin_share_percent": 6.03,
"coins_tracked": 17677,
"exchanges_tracked": 1233,
"categories_tracked": 308,
"source_url": "https://www.coingecko.com/en/charts",
"fetched_at": "2026-05-24T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/coingecko/global" \
-H "x-api-key: $CRAWLORA_API_KEY"