Endpoint Playground
Test Crawlora's CoinGecko News 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/news" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Rows to return, default 20, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"limit": 20,
"source_url": "https://www.coingecko.com/en/news",
"fetched_at": "2026-05-24T00:00:00Z",
"articles": [
{
"title": "Bitcoin rallies as markets recover",
"url": "https://publisher.example/story",
"image_url": "https://assets.example/news.png",
"summary": "A short news summary.",
"publisher": "CoinDesk",
"published_text": "2 hours ago",
"coins": [
{
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"url": "https://www.coingecko.com/en/coins/bitcoin",
"change_percent": 1.2
}
]
}
]
}
}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 article cards from CoinGecko's public news page.
{
"code": 200,
"msg": "OK",
"data": {
"limit": 20,
"source_url": "https://www.coingecko.com/en/news",
"fetched_at": "2026-05-24T00:00:00Z",
"articles": [
{
"title": "Bitcoin rallies as markets recover",
"url": "https://publisher.example/story",
"image_url": "https://assets.example/news.png",
"summary": "A short news summary.",
"publisher": "CoinDesk",
"published_text": "2 hours ago",
"coins": [
{
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"url": "https://www.coingecko.com/en/coins/bitcoin",
"change_percent": 1.2
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/news" \
-H "x-api-key: $CRAWLORA_API_KEY"