Endpoint Playground
Test Crawlora's CoinGecko Category Coins 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/category/<slug>/coins?vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | CoinGecko category slug such as stablecoins | |
| 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": {
"slug": "stablecoins",
"name": "Stablecoins",
"page": 1,
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/categories/stablecoins?page=1",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"rank": 1,
"id": "tether",
"symbol": "USDT",
"name": "Tether",
"price": 1,
"market_cap": 150000000000
}
]
}
}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 coin rows from a CoinGecko public category page. This endpoint supports the documented `vs_currency` enum.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "stablecoins",
"name": "Stablecoins",
"page": 1,
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/categories/stablecoins?page=1",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"rank": 1,
"id": "tether",
"symbol": "USDT",
"name": "Tether",
"price": 1,
"market_cap": 150000000000
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/category/<slug>/coins" \
-H "x-api-key: $CRAWLORA_API_KEY"