Endpoint Playground
Test Crawlora's List Polymarket events 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/events?limit=25&offset=0&order=volume24hr&closed=true" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | 25 | Maximum events, defaults to 25 and supports up to 100 |
| offset | integer | No | 0 | Result offset, defaults to 0 and supports up to 10000 |
| order | string | No | volume24hr | Sort field |
| ascending | boolean | No | Sort ascending when true | |
| closed | string | No | true | Closed filter |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://gamma-api.polymarket.com/...",
"fetched_at": "2026-06-07T11:00:00Z",
"events": []
}
}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 from Polymarket's credential-free public Gamma events JSON.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://gamma-api.polymarket.com/...",
"fetched_at": "2026-06-07T11:00:00Z",
"events": []
}
}curl "https://api.crawlora.net/api/v1/polymarket/events" \
-H "x-api-key: $CRAWLORA_API_KEY"