Venues API
Get Venues by Location
Section titled “Get Venues by Location”Search for venues near a geographic point.
| Method | GET |
| Route | /partner/v1/venue/details/byLocation |
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
lat | Double | Yes | Latitude |
lon | Double | Yes | Longitude |
radius | Double | Yes | Search radius (max 80km) |
page | Int | No | Page number |
pageSize | Int | No | Results per page (default: 25, max: 100) |
Response
Section titled “Response”Returns VenueDetailsResponse ordered by distance from the provided coordinates.
Get Venues by IDs
Section titled “Get Venues by IDs”Look up specific venues by their IDs.
| Method | POST |
| Route | /partner/v1/venue/details/byIds |
Request Body
Section titled “Request Body”{ "ids": ["C0057070265"], "location": { "lat": 34.0195, "lon": -118.4912 }}Response
Section titled “Response”Returns VenueDetailsResponse. If a location is provided in the request, each venue includes kmDistance.
Search Venues by Name
Section titled “Search Venues by Name”Search for venues matching a text query within a geographic area.
| Method | GET |
| Route | /partner/v1/venue/details/search |
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
term | String | Yes | Search query for venue names |
lat | Double | Yes | Latitude |
lon | Double | Yes | Longitude |
radius | Double | Yes | Search radius (max 80km) |
pageSize | Int | No | Results per page |
page | Int | No | Page number |
Response
Section titled “Response”Returns VenueDetailsResponse ordered by distance from the provided coordinates.
Get Venue by Vendor ID
Section titled “Get Venue by Vendor ID”Look up an Atom venue using your internal vendor venue ID. Useful for mapping your system’s venue IDs to Atom’s.
| Method | GET |
| Route | /partner/v1/venues/byVendorVenueId/{vendorVenueId} |
Path Parameters
Section titled “Path Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
vendorVenueId | String | Yes | Your internal venue identifier |
Query Parameters
Section titled “Query Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
circuitId | String | No | Limit query to a specific theater circuit |
Response
Section titled “Response”Returns VenueDetailsResponse.