Endpoint Playground
Test Crawlora's Polymarket CLOB 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/clob/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",
"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",
"enable_order_book": true,
"active": true,
"accepting_orders": true,
"rewards": {
"min_size": 500,
"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 CLOB market detail row by market condition id, including tokens, reward settings, order acceptance state, tags, and fees.
{
"code": 200,
"msg": "OK",
"data": {
"condition_id": "0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327",
"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",
"enable_order_book": true,
"active": true,
"accepting_orders": true,
"rewards": {
"min_size": 500,
"max_spread": 2.5
}
}
}
}curl "https://api.crawlora.net/api/v1/polymarket/clob/market/<condition_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"