Basic Venue Details
Learn to fetch details for venues using the Discovery API.
We'll cover the following...
We can use the venues endpoint to search for venues based on different queries, getting various venues. Apart from this, we can also use this endpoint for retrieving the details of singular venues. A venue ID is required as part of the URL to get venue details.
The diagram below gives an overview of this endpoint:
The URL for this endpoint is:
https://app.ticketmaster.com/discovery/v2/venues/{id}
Here, {id}
is the ID of a venue.
Request parameters
Apart from the id
URL parameter, this endpoint also takes a couple of optional query parameters. The table below gives an overview of these parameters:
Parameter | Type | Category | Description |
| string | required | This is the ID of the venue we want the details for. |
| string | optional | This is the locale in ISO code format. Multiple comma-separated values can be provided. When omitting the country part of the code (only |
| array[string] | optional | If provided, the results are filtered based on the domain they are available on. |
Let's try making an actual call to this endpoint. The list below contains several venues and their IDs that we can use for this endpoint:
Venue | ID |
Madison Square Garden | KovZpZA7AAEA |
SoFi Stadium | KovZ917ACh0 |
United Center | KovZpa2M7e |
Dolby Live | KovZ917A5L7 |
Ball Arena | KovZpZAFaJeA |
If you want, you ...