Endpoint Playground
Test Crawlora's CoinGecko Token Unlocks 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/token-unlocks" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Rows to return, default 100, max 100 |
{
"code": 200,
"msg": "OK",
"data": {
"limit": 100,
"source_url": "https://www.coingecko.com/en/highlights/incoming-token-unlocks",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"rank": 1,
"id": "solv-protocol",
"symbol": "SOLV",
"name": "Solv Protocol",
"url": "https://www.coingecko.com/en/coins/solv-protocol",
"price": 0.071,
"change_1h_percent": 0.2,
"change_24h_percent": 1.4,
"change_7d_percent": -2.1,
"market_cap": 101000000,
"released_percent": 45.2,
"next_unlock_amount": 4800000,
"next_unlock_symbol": "SOLV",
"next_unlock_value_usd": 336730,
"next_unlock_percent": 0.28,
"next_unlock_time_left": "0 Days 09 Hrs 16 Min 49 Sec"
}
]
}
}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 incoming token unlocks page.
{
"code": 200,
"msg": "OK",
"data": {
"limit": 100,
"source_url": "https://www.coingecko.com/en/highlights/incoming-token-unlocks",
"fetched_at": "2026-05-24T00:00:00Z",
"coins": [
{
"rank": 1,
"id": "solv-protocol",
"symbol": "SOLV",
"name": "Solv Protocol",
"url": "https://www.coingecko.com/en/coins/solv-protocol",
"price": 0.071,
"change_1h_percent": 0.2,
"change_24h_percent": 1.4,
"change_7d_percent": -2.1,
"market_cap": 101000000,
"released_percent": 45.2,
"next_unlock_amount": 4800000,
"next_unlock_symbol": "SOLV",
"next_unlock_value_usd": 336730,
"next_unlock_percent": 0.28,
"next_unlock_time_left": "0 Days 09 Hrs 16 Min 49 Sec"
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/token-unlocks" \
-H "x-api-key: $CRAWLORA_API_KEY"