Endpoint Playground
Test Crawlora's Polymarket macro dashboard 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/dashboards/macro?limit=20" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | 20 | Maximum macro events, defaults to 20 and supports up to 100 |
| cursor | string | No | Optional keyset cursor from a prior macro dashboard response |
{
"code": 200,
"msg": "OK",
"data": {
"limit": 2,
"has_more": true,
"source_url": "https://gamma-api.polymarket.com/events/keyset?active=true&ascending=false&closed=false&limit=2&order=volume24hr&tag_slug=macro",
"fetched_at": "2026-06-07T11:00:00Z",
"events": [
{
"id": "436403",
"slug": "mexico-gdp-growth-in-q2-2026",
"title": "Mexico GDP growth in Q2 2026?",
"url": "https://polymarket.com/event/mexico-gdp-growth-in-q2-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 macroeconomic event rows for Polymarket's `/dashboards/macro` page using credential-free Gamma `events/keyset` JSON with the `macro` tag.
{
"code": 200,
"msg": "OK",
"data": {
"limit": 2,
"has_more": true,
"source_url": "https://gamma-api.polymarket.com/events/keyset?active=true&ascending=false&closed=false&limit=2&order=volume24hr&tag_slug=macro",
"fetched_at": "2026-06-07T11:00:00Z",
"events": [
{
"id": "436403",
"slug": "mexico-gdp-growth-in-q2-2026",
"title": "Mexico GDP growth in Q2 2026?",
"url": "https://polymarket.com/event/mexico-gdp-growth-in-q2-2026",
"active": true,
"closed": false,
"markets_count": 1
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/dashboards/macro" \
-H "x-api-key: $CRAWLORA_API_KEY"