Endpoint Playground
Test Crawlora's Polymarket homepage feed 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/polymarket/homepage/feed?feed=trending&limit=20" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| feed | string | No | trending | Homepage feed |
| limit | integer | No | 20 | Maximum rows, defaults to 20 and supports up to 100 |
| cursor | string | No | Optional keyset cursor from a prior event feed response |
{
"code": 200,
"msg": "OK",
"data": {
"feed": "politics",
"source_kind": "events_keyset",
"limit": 2,
"has_more": true,
"next_cursor": "eyJ2b2x1bWUyNGhyIjoiMTIzIn0=",
"source_url": "https://gamma-api.polymarket.com/events/keyset?active=true&ascending=false&closed=false&limit=2&order=volume24hr&tag_slug=politics",
"fetched_at": "2026-06-07T11:00:00Z",
"events": [
{
"id": "545095",
"slug": "bitcoin-above-on-june-7-2026",
"title": "Bitcoin above ___ on June 7?",
"url": "https://polymarket.com/event/bitcoin-above-on-june-7-2026",
"active": true,
"closed": false,
"markets_count": 1
}
]
}
}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 for Polymarket homepage feeds discovered from the public web app and backed by credential-free Gamma JSON. The `feed` enum accepts `trending`, `breaking`, `new`, `politics`, `sports`, `crypto`, `esports`, `iran`, `finance`, `geopolitics`, `tech`, `culture`, `economy`, `weather`, `mentions`, and `elections`. Most feeds return events from Gamma `events/keyset`; `breaking` returns high-movement market rows and `mentions` returns open event search matches.
{
"code": 200,
"msg": "OK",
"data": {
"feed": "politics",
"source_kind": "events_keyset",
"limit": 2,
"has_more": true,
"next_cursor": "eyJ2b2x1bWUyNGhyIjoiMTIzIn0=",
"source_url": "https://gamma-api.polymarket.com/events/keyset?active=true&ascending=false&closed=false&limit=2&order=volume24hr&tag_slug=politics",
"fetched_at": "2026-06-07T11:00:00Z",
"events": [
{
"id": "545095",
"slug": "bitcoin-above-on-june-7-2026",
"title": "Bitcoin above ___ on June 7?",
"url": "https://polymarket.com/event/bitcoin-above-on-june-7-2026",
"active": true,
"closed": false,
"markets_count": 1
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/homepage/feed" \
-H "x-api-key: $CRAWLORA_API_KEY"