Endpoint Playground
Test Crawlora's Ticketmaster Attraction 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/attraction-events?id=<id>&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric Ticketmaster attraction id | |
| page | integer | No | Zero-based page (0-49) | |
| sort | string | No | relevance | Result order |
{
"code": 200,
"data": {
"count": 20,
"entity_id": "sample-id",
"events": [
{
"attractions": [
{
"discovery_id": "K8vZ9172Qo7",
"id": "1688071",
"image_url": "https://example.com/resource",
"name": "Ariana Grande",
"url": "https://example.com/resource"
}
],
"cancelled": true,
"discovery_id": "vv1A7ZkG_GkdqBxS4",
"event_change_status": "none",
"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"
}
],
"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",
"page": 1,
"query": "sample",
"sort": "date",
"source_url": "https://example.com/resource",
"total": 28
},
"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 upcoming Ticketmaster events for one attraction. The sort enum accepts `relevance` and `date`.
{
"code": 200,
"data": {
"count": 20,
"entity_id": "sample-id",
"events": [
{
"attractions": [
{
"discovery_id": "K8vZ9172Qo7",
"id": "1688071",
"image_url": "https://example.com/resource",
"name": "Ariana Grande",
"url": "https://example.com/resource"
}
],
"cancelled": true,
"discovery_id": "vv1A7ZkG_GkdqBxS4",
"event_change_status": "none",
"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"
}
],
"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",
"page": 1,
"query": "sample",
"sort": "date",
"source_url": "https://example.com/resource",
"total": 28
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/ticketmaster/attraction-events?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"