Endpoint Playground
Test Crawlora's Polymarket rewards markets 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/markets?order_by=market&position=asc&date=2026-06-07&q=bitcoin&tag_slug=all&cursor=MA%3D%3D&limit=100" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| order_by | string | No | market | Rewards market sort |
| position | string | No | asc | Sort direction |
| date | string | No | 2026-06-07 | Reward program date in YYYY-MM-DD format; defaults to today in UTC |
| q | string | No | bitcoin | Optional market question search text |
| tag_slug | string | No | all | Rewards category |
| cursor | string | No | MA== | Optional rewards cursor from a prior response; defaults to MA== |
| limit | integer | No | 100 | Maximum rows, defaults to 100 and supports up to 100 |
{
"code": 200,
"msg": "OK",
"data": {
"order_by": "market",
"position": "desc",
"date": "2026-06-07",
"tag_slug": "all",
"cursor": "MA==",
"next_cursor": "MTAw",
"limit": 100,
"count": 100,
"total_count": 5430,
"has_more": true,
"markets": [
{
"market_id": "2461586",
"condition_id": "0x2d293b8d8141edcc3317f6e677a01623dc482e7fe8eb4c4e207c9a0987c37d22",
"question": "StarCraft II: herO vs Cure (BO7)",
"market_slug": "sc2-hero-cure-2026-06-07",
"event_slug": "sc2-hero-cure-2026-06-07",
"volume_24h": 79.9901,
"rewards_max_spread": 4.5,
"rewards_min_size": 50,
"daily_reward_rate": 10.00036,
"tokens": [
{
"token_id": "49033998602764986470838384384660931821099068366428064235699748485619139146655",
"outcome": "herO",
"price": 0.995
}
]
}
]
}
}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 public rewards-market rows used by Polymarket's `/rewards` page. The `order_by` enum accepts `market`, `earnings`, `max_spread`, `min_size`, `rate_per_day`, `price`, `earning_percentage`, and `spread`; the `position` enum accepts `asc` and `desc`; the `tag_slug` enum accepts `all`, `politics`, `sports`, `crypto`, `pop-culture`, `middle-east`, `business`, and `science`.
{
"code": 200,
"msg": "OK",
"data": {
"order_by": "market",
"position": "desc",
"date": "2026-06-07",
"tag_slug": "all",
"cursor": "MA==",
"next_cursor": "MTAw",
"limit": 100,
"count": 100,
"total_count": 5430,
"has_more": true,
"markets": [
{
"market_id": "2461586",
"condition_id": "0x2d293b8d8141edcc3317f6e677a01623dc482e7fe8eb4c4e207c9a0987c37d22",
"question": "StarCraft II: herO vs Cure (BO7)",
"market_slug": "sc2-hero-cure-2026-06-07",
"event_slug": "sc2-hero-cure-2026-06-07",
"volume_24h": 79.9901,
"rewards_max_spread": 4.5,
"rewards_min_size": 50,
"daily_reward_rate": 10.00036,
"tokens": [
{
"token_id": "49033998602764986470838384384660931821099068366428064235699748485619139146655",
"outcome": "herO",
"price": 0.995
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/rewards/markets" \
-H "x-api-key: $CRAWLORA_API_KEY"