Endpoint Playground
Test Crawlora's CoinGecko categories 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/categories?vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Rows to return, default 100, max 100 | |
| vs_currency | string | No | btc | Quote currency |
{
"code": 200,
"msg": "OK",
"data": {
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/categories",
"fetched_at": "2026-05-24T00:00:00Z",
"categories": [
{
"rank": 1,
"id": "layer-1",
"slug": "layer-1",
"name": "Layer 1",
"url": "https://www.coingecko.com/en/categories/layer-1",
"change_1h_percent": 0.2,
"change_24h_percent": 1.4,
"change_7d_percent": -2.1,
"market_cap": 2533816836729,
"volume_24h": 813530873,
"coin_count": 128
}
]
}
}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 CoinGecko category rows from the public categories page. This endpoint supports the documented `vs_currency` enum.
{
"code": 200,
"msg": "OK",
"data": {
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/categories",
"fetched_at": "2026-05-24T00:00:00Z",
"categories": [
{
"rank": 1,
"id": "layer-1",
"slug": "layer-1",
"name": "Layer 1",
"url": "https://www.coingecko.com/en/categories/layer-1",
"change_1h_percent": 0.2,
"change_24h_percent": 1.4,
"change_7d_percent": -2.1,
"market_cap": 2533816836729,
"volume_24h": 813530873,
"coin_count": 128
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"