Endpoint Playground
Test Crawlora's Get a Ticketmaster event 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/event?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Ticketmaster event id |
{
"code": 200,
"data": {
"event": {
"attractions": [
{
"discovery_id": "K8vZ9172Qo7",
"id": "1688071",
"image_url": "https://example.com/resource",
"name": "Ariana Grande",
"url": "https://example.com/resource"
}
],
"cancelled": true,
"classification": {
"genre": "Pop",
"segment": "Music",
"sub_genre": "Electro Pop",
"sub_type": "Musician",
"type": "Individual"
},
"currency": "USD",
"description": "sample",
"discovery_id": "vv1A7ZkG_GkdqBxS4",
"event_change_status": "none",
"event_type": "STANDARD",
"id": "04006319DDEA2CD5",
"image_url": "https://example.com/resource",
"limited_availability": true,
"onsale_time": "2025-09-10T15:00:00Z",
"postponed": true,
"presales": [
{
"end_time": "2025-09-10T03:00:00Z",
"name": "Artist Presale",
"start_time": "2025-09-09T15:00:00Z"
}
],
"product_type": "General",
"rescheduled": true,
"seatmap_url": "https://example.com/resource",
"sold_out": true,
"start_time": "2026-08-04T02:00:00Z",
"tba": true,
"ticketing_status": "UNKNOWN",
"time_zone": "America/Chicago",
"title": "Ariana Grande - The Eternal Sunshine Tour",
"url": "https://example.com/resource",
"venue": {
"address": "1901 W Madison",
"city": "Chicago",
"country": "US",
"discovery_id": "KovZpa2M7e",
"id": "32882",
"image_url": "https://example.com/resource",
"latitude": 41.881244,
"longitude": -87.674274,
"name": "United Center",
"postal_code": "60612",
"state": "IL",
"url": "https://example.com/resource"
},
"virtual": true
},
"fetched_at": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}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 normalized details for one Ticketmaster event, including its venue, attractions, timing, availability flags, and classification.
{
"code": 200,
"data": {
"event": {
"attractions": [
{
"discovery_id": "K8vZ9172Qo7",
"id": "1688071",
"image_url": "https://example.com/resource",
"name": "Ariana Grande",
"url": "https://example.com/resource"
}
],
"cancelled": true,
"classification": {
"genre": "Pop",
"segment": "Music",
"sub_genre": "Electro Pop",
"sub_type": "Musician",
"type": "Individual"
},
"currency": "USD",
"description": "sample",
"discovery_id": "vv1A7ZkG_GkdqBxS4",
"event_change_status": "none",
"event_type": "STANDARD",
"id": "04006319DDEA2CD5",
"image_url": "https://example.com/resource",
"limited_availability": true,
"onsale_time": "2025-09-10T15:00:00Z",
"postponed": true,
"presales": [
{
"end_time": "2025-09-10T03:00:00Z",
"name": "Artist Presale",
"start_time": "2025-09-09T15:00:00Z"
}
],
"product_type": "General",
"rescheduled": true,
"seatmap_url": "https://example.com/resource",
"sold_out": true,
"start_time": "2026-08-04T02:00:00Z",
"tba": true,
"ticketing_status": "UNKNOWN",
"time_zone": "America/Chicago",
"title": "Ariana Grande - The Eternal Sunshine Tour",
"url": "https://example.com/resource",
"venue": {
"address": "1901 W Madison",
"city": "Chicago",
"country": "US",
"discovery_id": "KovZpa2M7e",
"id": "32882",
"image_url": "https://example.com/resource",
"latitude": 41.881244,
"longitude": -87.674274,
"name": "United Center",
"postal_code": "60612",
"state": "IL",
"url": "https://example.com/resource"
},
"virtual": true
},
"fetched_at": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/ticketmaster/event?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"