Endpoint Playground
Test Crawlora's Polymarket market clarifications 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/market-clarifications?market_id=558934&event_id=30615&state=resolved&limit=25&offset=0&order=createdAt" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| market_id | string | No | 558934 | Optional market id filter |
| event_id | string | No | 30615 | Optional event id filter |
| state | string | No | resolved | Optional upstream state filter |
| question_id | string | No | Optional upstream question id filter | |
| tx_hash | string | No | Optional transaction hash filter | |
| limit | integer | No | 25 | Rows to return |
| offset | integer | No | 0 | Result offset |
| order | string | No | createdAt | Optional upstream sort field |
| ascending | boolean | No | Sort ascending when true | |
| after_cursor | string | No | Optional upstream cursor |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://gamma-api.polymarket.com/...",
"fetched_at": "2026-06-07T11:00:00Z",
"data": []
}
}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 public market clarification rows from Polymarket Gamma.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://gamma-api.polymarket.com/...",
"fetched_at": "2026-06-07T11:00:00Z",
"data": []
}
}curl "https://api.crawlora.net/api/v1/polymarket/market-clarifications" \
-H "x-api-key: $CRAWLORA_API_KEY"