Endpoint Playground
Test Crawlora's CoinGecko Coin 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>?vs_currency=btc" \
-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 |
{
"code": 200,
"msg": "ok",
"data": {
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"rank": 1,
"price": 76535.94,
"change_24h_percent": 1.5,
"market_cap": 1533816836729,
"volume_24h": 26813530873,
"links": {
"website": "https://bitcoin.org",
"github": "https://github.com/bitcoin/bitcoin"
},
"categories": [
"Smart Contract Platform"
],
"source_url": "https://www.coingecko.com/en/coins/bitcoin",
"fetched_at": "2026-05-24T00:00:00Z"
}
}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 profile, market stats, links, and categories for one coin id. This endpoint supports the documented `vs_currency` enum and is not intended for real-time trading.
{
"code": 200,
"msg": "ok",
"data": {
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"rank": 1,
"price": 76535.94,
"change_24h_percent": 1.5,
"market_cap": 1533816836729,
"volume_24h": 26813530873,
"links": {
"website": "https://bitcoin.org",
"github": "https://github.com/bitcoin/bitcoin"
},
"categories": [
"Smart Contract Platform"
],
"source_url": "https://www.coingecko.com/en/coins/bitcoin",
"fetched_at": "2026-05-24T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/coingecko/coin/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"