Searching for Venues

Let's learn to search for and filter venues using Ticketmaster's Discovery API.

Venue search

A venue is where an event takes place. We can search for venues and filter the search results through the Discovery API's venues endpoint.

The URL for this endpoint is mentioned below:

https://app.ticketmaster.com/discovery/v2/venues

Request parameters

There are no required parameters for this endpoint. However, we can provide several optional parameters to filter the search results. An overview of some of the parameters is given below. You can visit this lesson to see the complete list of parameters. ...

Parameter

Type

Category

Description

id

string

optional

If provided, the search results are filtered by the venue ID.

keyword

string

optional

This is a keyword on which the search is performed.

radius

string

optional

This is the radius of the area in which we want to search for venues.

unit

enum['miles', 'km']

optional

This is the unit of the search area radius. The default value is miles.

size

number

optional

This is the number of results to be returned per page. The default value is 20.

page

number

optional

This is the page number to be returned. The default value is 0.

sort

string

optional

This is the sorting order of the search results. Allowable values are, name,asc, name,desc, date,asc, date,desc, relevance,asc, relevance,desc, distance,asc, name,date,asc, name,date,desc, date,name,asc, date,name,desc, distance,date,asc, onSaleStartDate,asc, id,asc, venueName,asc, venueName,desc, random. The default value is relevance,desc.

countryCode

string

optional

If provided, the search results are filtered on the country.

geoPoint

string

optional

If provided, the search results are filtered on the geohash.

Let's try making a ...