Ticketmaster Offerings API

Retrieve ticket offerings and pricing

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/ticketmaster-offerings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

ticketmaster-offerings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ticketmaster Commerce Availability Offerings API
  description: The Ticketmaster Commerce API enables developers to retrieve ticket availability, pricing, and purchase links for events. Provides access to event inventory status, top picks, and checkout URLs to redirect users to the Ticketmaster purchase flow.
  version: '2.0'
  contact:
    name: Ticketmaster Developer Support
    url: https://developer.ticketmaster.com
  termsOfService: https://developer.ticketmaster.com/support/terms-of-use/
servers:
- url: https://app.ticketmaster.com/commerce/v2
  description: Ticketmaster Commerce API v2
security:
- ApiKeyQuery: []
tags:
- name: Offerings
  description: Retrieve ticket offerings and pricing
paths:
  /events/{eventId}/offers.json:
    get:
      operationId: getEventOffers
      summary: Get Event Offers
      description: Returns ticket offering details for a specific event, including price ranges, ticket limits, and purchase URLs.
      tags:
      - Offerings
      parameters:
      - name: apikey
        in: query
        required: true
        schema:
          type: string
      - name: eventId
        in: path
        required: true
        schema:
          type: string
        description: Ticketmaster event ID
      responses:
        '200':
          description: Event ticket offers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventOffers'
        '401':
          description: Unauthorized
        '404':
          description: Event not found
components:
  schemas:
    TicketType:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        typeId:
          type: string
    OfferPrice:
      type: object
      properties:
        type:
          type: string
        currency:
          type: string
        total:
          type: number
        fees:
          type: array
          items:
            type: object
            properties:
              type:
                type: string
              amount:
                type: number
    Offer:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        priceZone:
          $ref: '#/components/schemas/PriceZone'
        currency:
          type: string
        prices:
          type: array
          items:
            $ref: '#/components/schemas/OfferPrice'
        limit:
          type: object
          properties:
            min:
              type: integer
            max:
              type: integer
    EventOffers:
      type: object
      properties:
        eventId:
          type: string
        ticketTypes:
          type: array
          items:
            $ref: '#/components/schemas/TicketType'
        priceRanges:
          type: array
          items:
            $ref: '#/components/schemas/PriceRange'
        offers:
          type: array
          items:
            $ref: '#/components/schemas/Offer'
    PriceRange:
      type: object
      properties:
        type:
          type: string
        currency:
          type: string
        min:
          type: number
        max:
          type: number
    PriceZone:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: apikey