Endpoint Playground
Test Crawlora's CoinGecko Chain 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/chains/<id>?vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | CoinGecko chain id such as ethereum | |
| limit | integer | No | Rows per section to return, default 20, max 100 | |
| vs_currency | string | No | btc | Quote currency |
{
"code": 200,
"msg": "OK",
"data": {
"id": "ethereum",
"name": "Ethereum",
"limit": 20,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/chains/ethereum",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"rank": 1,
"id": "ethereum",
"symbol": "ETH",
"name": "Ethereum",
"price": 3800
}
]
}
}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 sections from a CoinGecko public chain detail page. Sections are omitted when not present. This endpoint supports the documented `vs_currency` enum.
{
"code": 200,
"msg": "OK",
"data": {
"id": "ethereum",
"name": "Ethereum",
"limit": 20,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/chains/ethereum",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"rank": 1,
"id": "ethereum",
"symbol": "ETH",
"name": "Ethereum",
"price": 3800
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/chains/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"