Endpoint Playground
Test Crawlora's Ticketmaster discover city events 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/ticketmaster/discover-city-events?city=<city>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| city | string | Yes | Ticketmaster discover city slug | |
| country | string | No | Two-letter country code matching the selected city | |
| page | integer | No | Zero-based page |
{
"code": 200,
"data": {
"entity_id": "new-york-city",
"page": 1,
"count": 20,
"events": []
}
}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 a zero-based paginated event feed for a city slug returned by ticketmaster-discover-cities.
{
"code": 200,
"data": {
"entity_id": "new-york-city",
"page": 1,
"count": 20,
"events": []
}
}curl "https://api.crawlora.net/api/v1/ticketmaster/discover-city-events?city=<city>" \
-H "x-api-key: $CRAWLORA_API_KEY"