Inventory Status API

Learn to use Ticketmaster's Inventory Status API.

Inventory status details

A ticketing service must provide information about the availability of tickets. Ticketmaster provides an Inventory Status API that we can use for this exact purpose.

The Inventory Status API has a single endpoint—the availability endpoint—through which we can retrieve the inventory status for specified events.

The URL for this endpoint is:

https://app.ticketmaster.com/inventory-status/v1/availability

Request parameters

This endpoint takes a single query parameter, the details of which are as follows:

Parameter

Type

Category

Description

events

array[string]

required

This is an array of event IDs we want the inventory statuses for

Let's ...