Endpoint Playground
Test Crawlora's Polymarket predictions 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/predictions?status=active&sort=competitive&tag=politics&recurrence=hourly&limit=20" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| status | string | No | active | Prediction status |
| sort | string | No | competitive | Prediction sort |
| tag | string | No | politics | Optional tag slug |
| recurrence | string | No | hourly | Optional recurrence filter |
| limit | integer | No | 20 | Maximum events, defaults to 20 and supports up to 100 |
| cursor | string | No | Optional keyset cursor from a prior predictions response |
{
"code": 200,
"msg": "OK",
"data": {
"status": "all",
"sort": "competitive",
"limit": 2,
"has_more": true,
"next_cursor": "eyJjb21wZXRpdGl2ZSI6IjAuODgifQ==",
"source_url": "https://gamma-api.polymarket.com/events/keyset?ascending=false&limit=2&order=competitive",
"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 event rows for the Polymarket `/predictions` page using credential-free Gamma `events/keyset` JSON. The `status` enum accepts `active`, `resolved`, and `all`; the `sort` enum accepts `competitive`, `volume`, `volume_24hr`, `ending_soon`, `liquidity`, `newest`, and `closed_time`; the `recurrence` enum accepts `hourly`, `daily`, `weekly`, `monthly`, and `yearly`.
{
"code": 200,
"msg": "OK",
"data": {
"status": "all",
"sort": "competitive",
"limit": 2,
"has_more": true,
"next_cursor": "eyJjb21wZXRpdGl2ZSI6IjAuODgifQ==",
"source_url": "https://gamma-api.polymarket.com/events/keyset?ascending=false&limit=2&order=competitive",
"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/predictions" \
-H "x-api-key: $CRAWLORA_API_KEY"