Endpoint Playground
Test Crawlora's Polymarket market detail by slug 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/slug/nba-sas-nyk-2026-06-08" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | nba-sas-nyk-2026-06-08 | Polymarket market slug |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "nba-sas-nyk-2026-06-08",
"market": {
"id": "2415863",
"slug": "nba-sas-nyk-2026-06-08",
"question": "Spurs vs. Knicks",
"outcomes": [
{
"outcome": "Spurs",
"price": 0.46
}
]
}
}
}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": {
"slug": "nba-sas-nyk-2026-06-08",
"market": {
"id": "2415863",
"slug": "nba-sas-nyk-2026-06-08",
"question": "Spurs vs. Knicks",
"outcomes": [
{
"outcome": "Spurs",
"price": 0.46
}
]
}
}
}curl "https://api.crawlora.net/api/v1/polymarket/market/slug/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"