Endpoint Playground
Test Crawlora's Polymarket rewards market 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/rewards/market/0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| condition_id (path) | string | Yes | 0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327 | Polymarket market condition id |
{
"code": 200,
"msg": "OK",
"data": {
"condition_id": "0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327",
"count": 1,
"market": {
"condition_id": "0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327",
"question": "Call of Duty: Paris Gentle Mates vs OpTic Texas - Game 4 Winner",
"market_slug": "codmw-par-tex-2026-06-07-game4",
"daily_reward_rate": 5,
"rewards_min_size": 500,
"rewards_max_spread": 2.5
}
}
}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 one public rewards-market row from Polymarket CLOB rewards JSON by market condition id.
{
"code": 200,
"msg": "OK",
"data": {
"condition_id": "0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327",
"count": 1,
"market": {
"condition_id": "0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327",
"question": "Call of Duty: Paris Gentle Mates vs OpTic Texas - Game 4 Winner",
"market_slug": "codmw-par-tex-2026-06-07-game4",
"daily_reward_rate": 5,
"rewards_min_size": 500,
"rewards_max_spread": 2.5
}
}
}curl "https://api.crawlora.net/api/v1/polymarket/rewards/market/<condition_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"