Endpoint Playground
Test Crawlora's CoinGecko exchanges 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/exchanges?kind=spot&vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| kind | string | No | spot | Exchange table kind, default spot |
| page | integer | No | Page number, default 1 | |
| limit | integer | No | Rows to return, default 100, max 100 | |
| vs_currency | string | No | btc | Quote currency |
{
"code": 200,
"msg": "OK",
"data": {
"kind": "spot",
"page": 1,
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/exchanges",
"fetched_at": "2026-05-24T00:00:00Z",
"exchanges": [
{
"rank": 1,
"id": "binance",
"name": "Binance",
"url": "https://www.coingecko.com/en/exchanges/binance",
"image_url": "https://assets.coingecko.com/markets/images/52/small/binance.jpg",
"kind": "spot",
"trust_score": 10,
"volume_24h": 23789315893
}
]
}
}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 exchange rows from CoinGecko public website exchange tables. This endpoint supports the documented `vs_currency` enum.
{
"code": 200,
"msg": "OK",
"data": {
"kind": "spot",
"page": 1,
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/exchanges",
"fetched_at": "2026-05-24T00:00:00Z",
"exchanges": [
{
"rank": 1,
"id": "binance",
"name": "Binance",
"url": "https://www.coingecko.com/en/exchanges/binance",
"image_url": "https://assets.coingecko.com/markets/images/52/small/binance.jpg",
"kind": "spot",
"trust_score": 10,
"volume_24h": 23789315893
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/exchanges" \
-H "x-api-key: $CRAWLORA_API_KEY"