Endpoint Playground
Test Crawlora's Ticketmaster Venue Branding 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/venue-enhanced-details?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric Ticketmaster venue id |
{
"code": 200,
"msg": "OK",
"data": {
"venue_id": "32882",
"header_image_url": "https://prismic-images.tmol.io/ticketmaster-tm-global/ZyKuxq8jQArT0Cuh_32882-UnitedCenter.jpg",
"related_links": [
{
"title": "United Center",
"url": "http://www.unitedcenter.com/"
},
{
"title": "Chicago Bulls",
"url": "http://www.nba.com/bulls/"
},
{
"title": "Chicago Blackhawks",
"url": "http://www.chicagoblackhawks.com/"
}
]
}
}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 header branding imagery and external links (the venue's own site, resident teams) for major venues. Smaller venues without enhanced content return 404.
{
"code": 200,
"msg": "OK",
"data": {
"venue_id": "32882",
"header_image_url": "https://prismic-images.tmol.io/ticketmaster-tm-global/ZyKuxq8jQArT0Cuh_32882-UnitedCenter.jpg",
"related_links": [
{
"title": "United Center",
"url": "http://www.unitedcenter.com/"
},
{
"title": "Chicago Bulls",
"url": "http://www.nba.com/bulls/"
},
{
"title": "Chicago Blackhawks",
"url": "http://www.chicagoblackhawks.com/"
}
]
}
}curl "https://api.crawlora.net/api/v1/ticketmaster/venue-enhanced-details?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"