Endpoint Playground
Test Crawlora's Polymarket market detail 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/558934" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 558934 | Polymarket market id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "558934",
"market": {
"id": "558934",
"slug": "will-spain-win-the-2026-fifa-world-cup-963",
"question": "Will Spain win the 2026 FIFA World Cup?",
"outcomes": [
{
"outcome": "Yes",
"price": 0.16
}
]
}
}
}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 normalized Polymarket market from credential-free public Gamma market JSON. This endpoint does not require a Polymarket user token, wallet signature, cookies, or personal account authentication.
{
"code": 200,
"msg": "OK",
"data": {
"id": "558934",
"market": {
"id": "558934",
"slug": "will-spain-win-the-2026-fifa-world-cup-963",
"question": "Will Spain win the 2026 FIFA World Cup?",
"outcomes": [
{
"outcome": "Yes",
"price": 0.16
}
]
}
}
}curl "https://api.crawlora.net/api/v1/polymarket/market/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"