Endpoint Playground
Test Crawlora's CoinGecko Exchange 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/exchange/<id>?vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | CoinGecko exchange id such as binance | |
| limit | integer | No | Rows to return, default 100, max 100 | |
| vs_currency | string | No | btc | Quote currency |
{
"code": 200,
"msg": "OK",
"data": {
"id": "binance",
"name": "Binance",
"kind": "spot",
"trust_score": 10,
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/exchanges/binance",
"fetched_at": "2026-05-24T00:00:00Z",
"markets": [
{
"rank": 1,
"coin_id": "bitcoin",
"coin_name": "Bitcoin",
"pair": "BTC/USDT",
"price": 76535.94,
"spread_percent": 0.01
}
]
}
}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 profile stats and market rows from a CoinGecko public exchange page. This endpoint supports the documented `vs_currency` enum.
{
"code": 200,
"msg": "OK",
"data": {
"id": "binance",
"name": "Binance",
"kind": "spot",
"trust_score": 10,
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/exchanges/binance",
"fetched_at": "2026-05-24T00:00:00Z",
"markets": [
{
"rank": 1,
"coin_id": "bitcoin",
"coin_name": "Bitcoin",
"pair": "BTC/USDT",
"price": 76535.94,
"spread_percent": 0.01
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/exchange/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"