Availability
Getting availability for a product
Last updated
Getting availability for a product
Last updated
The first step when making a sale is to check for availability. Note if allowFreesale
is set to true on the product then this step is optional but it is advised you check it anyway if you can to check for closures.
Ventrata has two main availability calls:
POST /availability/calendar
this endpoint is highly optimised and will return a single object per day. It's designed to be queried for large date ranges and the result is used to populate an availability calendar.
POST /availability
this endpoint is slightly slower as it will return an object for each individual departure time (or day). You have to perform this step to retrieve an availabilityId
in order to confirm a sale, so if you just want to use this endpoint and skip the calendar endpoint then that's perfectly ok.
We will document both endpoints below.
POST
https://api.ventrata.com/octo/availability/calendar
The availability calendar endpoint for quick retrieval of availability over a date range
Name | Type | Description |
---|---|---|
The availability calendar can optionally take an array of units if you already know what they are and will automatically show availabilities as sold out if they have insufficient space.
The response will be an array of objects, one for each day between the range given in localDateStart
and localDateEnd
. Each object is defined as:
POST
https://api.ventrata.com/octo/availability
Get final availability for a given product. If in doubt between the calendar endpoint and this one, you should use this endpoint.
The availability calendar can optionally take an array of units if you already know what they are and will automatically show availabilities as sold out if they have insufficient space.
The response will be an array of availability objects which are defined below:
Depending on the value of product.availabilityType
the response will keep the same structure but will generally look slightly different. We've provided examples of that below:
Products with this availabilityType are typically Museums, Attractions or Hop on Hop off tours where the guest just picks a date they wish to travel and can show up at any point whilst the product is open.
This is a typical response from a product with OPENING_HOURS
availability type:
Notice how vacancies, capacity and max units are all null indicating unlimited, and the allDay flag is set true. You should just render this as a calendar with no further times to chose from once the guest has chosen the date.
Unlike the calendar endpoint, the availability check endpoint will not return an availability object if the product is closed. If there are no availabilities for a given date you should just mark it as closed in your interface.
Name | Type | Description |
---|---|---|
productId
string
The product id
optionId
string
The option id
localDateStart
string
Start date to query for (YYYY-MM-DD)
localDateEnd
string
End date to query for (YYYY-MM-DD)
units[].id
string
The unit id
units[].quantity
integer
The quantity of the unit
Field
Description
localDate
The date (in format YYYY-MM-DD)
status
The status of that date. Possible values are:
AVAILABLE
There are availabilities available on this date for sale.
SOLD_OUT
This date was available but is now fully sold out.
LIMITED
This date is available but has less than 50% capacity left.
CLOSED
This date is closed and not available for sale.
available
A boolean value (true or false) indicating whether you're able to sell tickets. This is basically just an alias for: status == 'AVAILABLE' || status == 'LIMITED'
capacity
The total capacity on this day. We cannot give exact vacancies on the calendar endpoint as this endpoint is cached for speed and is only meant to give an indication.
openingHours
A list of opening hours that the product is open on this day.
openingHours[].from
When this product opens (HH:MM)
openingHours[].to
When this product closes (HH:MM)
productId
string
The product id
optionId
string
The option id
localDateStart
string
Start date to query for (YYYY-MM-DD)
localDateEnd
string
End date to query for (YYYY-MM-DD)
units[].id
string
The unit id
units[].quantity
integer
The quantity of the unit
Field
Description
id
The availability id, you'll need this when booking
localDateTimeStart
The start time for this availability. This will be in the local time zone to the product.
localDateTimeEnd
The end time for this availability. This will be in the local time zone to the product.
allDay
A boolean field indicating whether this is an all day availability and not a fixed departure time. If this value is true then there will be no other availability object on the same day.
status
The status of that date. Possible values are:
AVAILABLE
This availability is available for sale
FREESALE
This availability has no capacity and is available.
SOLD_OUT
This availability is not
LIMITED
This availability is available but has less than 50% capacity left.