Endpoint Playground
Test Crawlora's CoinGecko Coin Analysis 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/coin/<id>/analysis?vs_currency=btc&range=24h" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | CoinGecko coin id such as bitcoin | |
| vs_currency | string | No | btc | Quote currency |
| range | string | No | 24h | Chart range |
| include_annotations | boolean | No | Fetch optional CoinGecko chart annotations |
{
"code": 200,
"msg": "ok",
"data": {
"id": "bitcoin",
"vs_currency": "usd",
"range": "24h",
"source_url": "https://www.coingecko.com/price_charts/bitcoin/usd/24_hours.json",
"fetched_at": "2026-05-24T00:00:00Z",
"first_price": 75386.89,
"last_price": 76535.94,
"min_price": 75344.2,
"max_price": 77216.4,
"absolute_change": 1149.05,
"percent_change": 1.52,
"high_low_range_percent": 2.48,
"points_count": 288,
"points": [
{
"timestamp": 1779556795943,
"datetime": "2026-05-24T00:00:00Z",
"price": 75386.89
}
]
}
}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 derived price-chart metrics from CoinGecko public chart JSON. This endpoint supports the documented `vs_currency` enum and is not investment advice or real-time trading data.
{
"code": 200,
"msg": "ok",
"data": {
"id": "bitcoin",
"vs_currency": "usd",
"range": "24h",
"source_url": "https://www.coingecko.com/price_charts/bitcoin/usd/24_hours.json",
"fetched_at": "2026-05-24T00:00:00Z",
"first_price": 75386.89,
"last_price": 76535.94,
"min_price": 75344.2,
"max_price": 77216.4,
"absolute_change": 1149.05,
"percent_change": 1.52,
"high_low_range_percent": 2.48,
"points_count": 288,
"points": [
{
"timestamp": 1779556795943,
"datetime": "2026-05-24T00:00:00Z",
"price": 75386.89
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/coin/<id>/analysis" \
-H "x-api-key: $CRAWLORA_API_KEY"