Endpoint Playground
Test Crawlora's Ticketmaster Trending Attractions 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/trending-attractions" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"count": 10,
"attractions": [
{
"id": "1052712",
"discovery_id": "K8vZ9175T17",
"name": "Jonas Brothers",
"url": "https://www.ticketmaster.com/jonas-brothers-tickets/artist/1052712",
"image_url": "https://s1.ticketm.net/dam/a/378/809a1187-1545-43be-b5ab-e2d220621378_TABLET_LANDSCAPE_LARGE_16_9.jpg",
"rank": 1,
"images": [
{
"url": "https://s1.ticketm.net/dam/a/378/809a1187-1545-43be-b5ab-e2d220621378_TABLET_LANDSCAPE_LARGE_16_9.jpg",
"ratio": "16_9"
}
],
"segment": "Music",
"segment_id": "KZFzniwnSyZfZ7v7nJ",
"genre": "Pop",
"genre_id": "KnvZfZ7vAev"
}
]
}
}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 ranked list of currently-trending attractions across every segment (music, sports, arts and theater, family), not scoped to one category or city.
{
"code": 200,
"msg": "OK",
"data": {
"count": 10,
"attractions": [
{
"id": "1052712",
"discovery_id": "K8vZ9175T17",
"name": "Jonas Brothers",
"url": "https://www.ticketmaster.com/jonas-brothers-tickets/artist/1052712",
"image_url": "https://s1.ticketm.net/dam/a/378/809a1187-1545-43be-b5ab-e2d220621378_TABLET_LANDSCAPE_LARGE_16_9.jpg",
"rank": 1,
"images": [
{
"url": "https://s1.ticketm.net/dam/a/378/809a1187-1545-43be-b5ab-e2d220621378_TABLET_LANDSCAPE_LARGE_16_9.jpg",
"ratio": "16_9"
}
],
"segment": "Music",
"segment_id": "KZFzniwnSyZfZ7v7nJ",
"genre": "Pop",
"genre_id": "KnvZfZ7vAev"
}
]
}
}curl "https://api.crawlora.net/api/v1/ticketmaster/trending-attractions" \
-H "x-api-key: $CRAWLORA_API_KEY"