Endpoint Playground
Test Crawlora's Polymarket event detail by id 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/event/id/30615" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 30615 | Polymarket event id |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "world-cup-winner",
"event": {
"id": "30615",
"slug": "world-cup-winner",
"title": "World Cup Winner",
"markets_count": 64
}
}
}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 event from credential-free public Gamma event JSON. This endpoint does not require a Polymarket user token, wallet signature, cookies, or personal account authentication.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "world-cup-winner",
"event": {
"id": "30615",
"slug": "world-cup-winner",
"title": "World Cup Winner",
"markets_count": 64
}
}
}curl "https://api.crawlora.net/api/v1/polymarket/event/id/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"