Endpoint Playground
Test Crawlora's CoinGecko Gainers Losers 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/gainers-losers?vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Rows per section to return, default 20, max 100 | |
| vs_currency | string | No | btc | Quote currency |
{
"code": 200,
"msg": "OK",
"data": {
"limit": 5,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/crypto-gainers-losers",
"fetched_at": "2026-05-24T00:00:00Z",
"gainers": [
{
"rank": 514,
"id": "seda",
"symbol": "SEDA",
"name": "SEDA",
"url": "https://www.coingecko.com/en/coins/seda",
"price": 0.06493,
"volume_24h": 2262031,
"change_24h_percent": 52.3
}
],
"losers": [
{
"rank": 779,
"id": "infinit",
"symbol": "IN",
"name": "INFINIT",
"url": "https://www.coingecko.com/en/coins/infinit",
"price": 0.07623,
"volume_24h": 71889668,
"change_24h_percent": -24.5
}
]
}
}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 rows from CoinGecko's public crypto gainers and losers table. This endpoint supports the documented `vs_currency` enum.
{
"code": 200,
"msg": "OK",
"data": {
"limit": 5,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/crypto-gainers-losers",
"fetched_at": "2026-05-24T00:00:00Z",
"gainers": [
{
"rank": 514,
"id": "seda",
"symbol": "SEDA",
"name": "SEDA",
"url": "https://www.coingecko.com/en/coins/seda",
"price": 0.06493,
"volume_24h": 2262031,
"change_24h_percent": 52.3
}
],
"losers": [
{
"rank": 779,
"id": "infinit",
"symbol": "IN",
"name": "INFINIT",
"url": "https://www.coingecko.com/en/coins/infinit",
"price": 0.07623,
"volume_24h": 71889668,
"change_24h_percent": -24.5
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/gainers-losers" \
-H "x-api-key: $CRAWLORA_API_KEY"