Skip to content

Showtimes API

Get all showtimes at a specific venue within a date range.

MethodGET
Route/partner/v1/showtime/details/byVenue/{venueId}
ParameterTypeRequiredDescription
venueIdStringYesVenue identifier

Provide either ISO dates or local dates:

ParameterTypeRequiredDescription
isoStartDateStringYes*ISO 8601 start date
isoEndDateStringYes*ISO 8601 end date
localStartDateStringYes*Local start date
localEndDateStringYes*Local end date
productionIdsStringNoComma-separated list of production IDs to filter by

Returns ShowtimeDetailsResponse including pre-order details and an attribute map.


Look up specific showtimes by their IDs.

MethodPOST
Route/partner/v1/showtime/details/byIds

GetShowtimeDetailsRequest

{
"ids": ["D00747321039"]
}

Returns ShowtimeDetailsResponse.


Batch-query showtimes across multiple venues. Optionally include full production details in the response.

MethodPOST
Route/partner/v1/showtime/details/forVenues

GetShowtimesForVenuesRequest

{
"venueIds": ["C0057070265", "C00110921804"],
"isoDateBounds": {
"isoStartDate": "2024-01-15T07:00:00Z",
"isoEndDate": "2024-01-16T07:00:00Z"
},
"includeProductionDetails": true
}

Returns ShowtimeDetailsForVenuesResponse with showtimes grouped by venue ID.


Look up a showtime using your internal vendor showtime ID and an Atom venue ID.

MethodGET
Route/partner/v1/venues/{venueId}/showtimes/byVendorShowtimeId/{vendorShowtimeId}
ParameterTypeRequiredDescription
venueIdStringYesAtom venue identifier
vendorShowtimeIdStringYesYour internal showtime identifier
ParameterTypeRequiredDescription
circuitIdStringNoLimit query to a specific circuit

Returns ShowtimeDetailsResponse.


Get Showtime by Vendor Venue and Showtime IDs

Section titled “Get Showtime by Vendor Venue and Showtime IDs”

Look up a showtime using both your internal vendor venue ID and vendor showtime ID.

MethodGET
Route/partner/v1/venues/byVendorVenueId/{vendorVenueId}/showtimes/byVendorShowtimeId/{vendorShowtimeId}
ParameterTypeRequiredDescription
vendorVenueIdStringYesYour internal venue identifier
vendorShowtimeIdStringYesYour internal showtime identifier
ParameterTypeRequiredDescription
circuitIdStringNoLimit query to a specific circuit

Returns ShowtimeDetailsResponse.