Endpoint Playground
Test Crawlora's CoinGecko Markets 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/markets?vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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": {
"page": 1,
"limit": 3,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/?page=1",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"rank": 1,
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"url": "https://www.coingecko.com/en/coins/bitcoin",
"price": 76535.94,
"change_24h_percent": 1.5,
"volume_24h": 26813530873,
"market_cap": 1533816836729
}
]
}
}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 cryptocurrency market rows from CoinGecko public pages. This endpoint supports the documented `vs_currency` enum and is not intended for real-time trading.
{
"code": 200,
"msg": "ok",
"data": {
"page": 1,
"limit": 3,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/?page=1",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"rank": 1,
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"url": "https://www.coingecko.com/en/coins/bitcoin",
"price": 76535.94,
"change_24h_percent": 1.5,
"volume_24h": 26813530873,
"market_cap": 1533816836729
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/markets" \
-H "x-api-key: $CRAWLORA_API_KEY"