Fetch Availability For An Event
This endpoint returns a URL to Tickitto's Ticket Selection Widget for the event being searched.
The Widgets are availability aware and load in real-time what seats, dates, and times are available to be selected for that event.
Any additional selection required for add ons, pickup points, or concessions will be displayed in the Widget.
You will need to pass the event_id
and a basket_id
with this endpoint.
To generate a basket_id
, you will need to first create a basket by making a POST request to the create basket endpoint.
When the ticket buyer selects a ticket via the Widget, they will then need to invoke the 'add to basket' action. This action will add the chosen ticket(s) to the basket_id
associated with that widget URL.
Endpoint
GET tickitto.tech/api/availability/?{event_id}&{basket_id}
URL Parameters
event_id string
Tickitto's unique identifier for an event.
Ex: T008
basket_id string
Tickitto's unique identifier for a basket.
Ex: 2882a0e7-4d24-43b5-a376-202930ca89aa
Response
{"session_id": "b9e8baa2-a816-4083-9241-a34ba4037fcd","widget_url": "https://widget.tickitto.tech/availability?session=b9e8baa2-a816-4083-9241-a34ba4037fcd"}
Attributes
session_id string
Tickitto's unique identifier for the search query being made.
Ex: b9e8baa2-a816-4083-9241-a34ba4037fcd
widget url string The URL link for the event specific ticket selection widget. Ex: https://widget.tickitto.tech/availability?session=b9e8baa2-a816-4083-9241-a34ba4037fcd