Endpoint Playground
Test Crawlora's CoinGecko search 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/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| limit | integer | No | Rows per section to return, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "bitcoin",
"limit": 10,
"source_url": "https://www.coingecko.com/en/search_v2?query=bitcoin",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"url": "https://www.coingecko.com/en/coins/bitcoin",
"market_cap_rank": 1
}
],
"categories": [],
"markets": [],
"nft_contracts": [],
"asset_platforms": [],
"posts": []
}
}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 search sections from the public website search JSON. Empty valid searches return empty arrays.
{
"code": 200,
"msg": "OK",
"data": {
"query": "bitcoin",
"limit": 10,
"source_url": "https://www.coingecko.com/en/search_v2?query=bitcoin",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"url": "https://www.coingecko.com/en/coins/bitcoin",
"market_cap_rank": 1
}
],
"categories": [],
"markets": [],
"nft_contracts": [],
"asset_platforms": [],
"posts": []
}
}curl "https://api.crawlora.net/api/v1/coingecko/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"