Endpoint Playground
Test Crawlora's Get a Ticketmaster attraction 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?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric Ticketmaster attraction id |
{
"code": 200,
"msg": "OK",
"data": {
"attraction": {
"id": "1688071",
"name": "Ariana Grande",
"classification": {
"segment": "Music",
"genre": "Rock and Pop"
},
"has_artist_video": false,
"setlist_source_url": "https://www.setlist.fm/setlists/ariana-grande-33d0d809.html",
"setlists": [
{
"tour_name": "eternal sunshine",
"venue_name": "The O2 Arena",
"city_name": "London",
"country_name": "United Kingdom",
"event_date": "2026-08-20",
"sets": [
{
"name": "Act I",
"songs": [
{
"name": "petal",
"pre_recorded": true,
"performance_notes": "intro"
},
{
"name": "yes, and?"
}
]
}
]
}
]
}
}
}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 artist, team, or other attraction.
{
"code": 200,
"msg": "OK",
"data": {
"attraction": {
"id": "1688071",
"name": "Ariana Grande",
"classification": {
"segment": "Music",
"genre": "Rock and Pop"
},
"has_artist_video": false,
"setlist_source_url": "https://www.setlist.fm/setlists/ariana-grande-33d0d809.html",
"setlists": [
{
"tour_name": "eternal sunshine",
"venue_name": "The O2 Arena",
"city_name": "London",
"country_name": "United Kingdom",
"event_date": "2026-08-20",
"sets": [
{
"name": "Act I",
"songs": [
{
"name": "petal",
"pre_recorded": true,
"performance_notes": "intro"
},
{
"name": "yes, and?"
}
]
}
]
}
]
}
}
}curl "https://api.crawlora.net/api/v1/ticketmaster/attraction?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"