Endpoint Playground
Test Crawlora's Ticketmaster Related 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/attraction-related?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",
"count": 8,
"attractions": [
{
"id": "1638380",
"name": "Charli xcx",
"url": "https://www.ticketmaster.com/charli-xcx-tickets/artist/1638380"
},
{
"id": "1224909",
"name": "Demi Lovato",
"url": "https://www.ticketmaster.com/demi-lovato-tickets/artist/1224909"
}
]
}
}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 the "Fans Also Viewed" attractions shown on one attraction's own page. An attraction with no recommendation data returns a valid empty list.
{
"code": 200,
"msg": "OK",
"data": {
"attraction_id": "1688071",
"count": 8,
"attractions": [
{
"id": "1638380",
"name": "Charli xcx",
"url": "https://www.ticketmaster.com/charli-xcx-tickets/artist/1638380"
},
{
"id": "1224909",
"name": "Demi Lovato",
"url": "https://www.ticketmaster.com/demi-lovato-tickets/artist/1224909"
}
]
}
}curl "https://api.crawlora.net/api/v1/ticketmaster/attraction-related?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"