Endpoint Playground
Test Crawlora's CoinGecko New 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/new-coins?vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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": {
"page": 1,
"limit": 3,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/new-cryptocurrencies?page=1",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"rank": 5492,
"id": "purple-troll",
"symbol": "PTROLL",
"name": "Purple Troll",
"url": "https://www.coingecko.com/en/coins/purple-troll",
"price": 0.0001351,
"chain": "Solana",
"change_1h_percent": 5.4,
"change_24h_percent": 107.9,
"volume_24h": 61089.52,
"fully_diluted_valuation": 135506,
"last_added": "about 14 hours"
}
]
}
}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 new cryptocurrencies table. This endpoint supports the documented `vs_currency` enum.
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"limit": 3,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/new-cryptocurrencies?page=1",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"rank": 5492,
"id": "purple-troll",
"symbol": "PTROLL",
"name": "Purple Troll",
"url": "https://www.coingecko.com/en/coins/purple-troll",
"price": 0.0001351,
"chain": "Solana",
"change_1h_percent": 5.4,
"change_24h_percent": 107.9,
"volume_24h": 61089.52,
"fully_diluted_valuation": 135506,
"last_added": "about 14 hours"
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/new-coins" \
-H "x-api-key: $CRAWLORA_API_KEY"