Skip to content

Venues API

Search for venues near a geographic point.

MethodGET
Route/partner/v1/venue/details/byLocation
ParameterTypeRequiredDescription
latDoubleYesLatitude
lonDoubleYesLongitude
radiusDoubleYesSearch radius (max 80km)
pageIntNoPage number
pageSizeIntNoResults per page (default: 25, max: 100)

Returns VenueDetailsResponse ordered by distance from the provided coordinates.


Look up specific venues by their IDs.

MethodPOST
Route/partner/v1/venue/details/byIds

GetVenueDetailsRequest

{
"ids": ["C0057070265"],
"location": {
"lat": 34.0195,
"lon": -118.4912
}
}

Returns VenueDetailsResponse. If a location is provided in the request, each venue includes kmDistance.


Search for venues matching a text query within a geographic area.

MethodGET
Route/partner/v1/venue/details/search
ParameterTypeRequiredDescription
termStringYesSearch query for venue names
latDoubleYesLatitude
lonDoubleYesLongitude
radiusDoubleYesSearch radius (max 80km)
pageSizeIntNoResults per page
pageIntNoPage number

Returns VenueDetailsResponse ordered by distance from the provided coordinates.


Look up an Atom venue using your internal vendor venue ID. Useful for mapping your system’s venue IDs to Atom’s.

MethodGET
Route/partner/v1/venues/byVendorVenueId/{vendorVenueId}
ParameterTypeRequiredDescription
vendorVenueIdStringYesYour internal venue identifier
ParameterTypeRequiredDescription
circuitIdStringNoLimit query to a specific theater circuit

Returns VenueDetailsResponse.