Discover/Ticketmaster API
live

Ticketmaster APIticketmaster.com

Search Ticketmaster events by city, keyword, and date. Retrieve ticket price ranges, venue details, sale dates, and seatmap URLs for any event.

This API takes change requests — .
Endpoint health
monitored
search_events
get_event_tickets
0/2 passing latest checkself-healing
Endpoints
2
Updated
4h ago

What is the Ticketmaster API?

The Ticketmaster API covers two endpoints that let you search and inspect live events across the Ticketmaster catalog. search_events returns up to 200 events per page with price ranges, venue coordinates, classifications, and ticket URLs, while get_event_tickets delivers per-event detail including sale windows, performer data, seatmap URLs, and geo-tagged venue records.

This call costs3 credits / call— charged only on success
Try it
City name to filter events (e.g. 'New York', 'Los Angeles').
Zero-indexed page number for pagination.
Number of results per page (1-200).
Sort order for results (e.g. 'date,asc', 'date,desc', 'relevance,desc').
Search keyword to filter events (e.g. 'concert', 'basketball'). Omitting returns all events in the location.
Two-letter US state code (e.g. 'NY', 'CA').
Two-letter country code (e.g. 'US', 'CA').
api.parse.bot/scraper/fb5822b3-5b06-425c-b65b-e97cd48127ba/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/fb5822b3-5b06-425c-b65b-e97cd48127ba/search_events?city=New+York&page=0&size=5&keyword=concert&state_code=NY&sort=date%2Casc&country_code=US' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Search events by city and state with optional keyword filtering. Returns paginated results sorted by date or relevance. Each result includes event name, dates, venue, price ranges (when available), classifications, and ticket URLs. Pages are zero-indexed with up to 200 results per page.

Input
ParamTypeDescription
citystringCity name to filter events (e.g. 'New York', 'Los Angeles').
pagestringZero-indexed page number for pagination.
sizestringNumber of results per page (1-200).
sortstringSort order for results (e.g. 'date,asc', 'date,desc', 'relevance,desc').
keywordstringSearch keyword to filter events (e.g. 'concert', 'basketball'). Omitting returns all events in the location.
state_codestringTwo-letter US state code (e.g. 'NY', 'CA').
country_codestringTwo-letter country code (e.g. 'US', 'CA').
Response
{
  "type": "object",
  "fields": {
    "page": "current zero-indexed page number",
    "size": "number of results per page",
    "events": "array of event objects with id, name, url, dates, venues, price_ranges, classifications, attractions, sales, and images",
    "total_pages": "total number of pages available",
    "total_elements": "total number of matching events"
  },
  "sample": {
    "data": {
      "page": 1,
      "size": 3,
      "events": [
        {
          "id": "k7vGF_GEbFtCZ",
          "url": "https://www.ticketmaster.com/fast-lane-access-hypocrisy-not-a-new-york-new-york-08-12-2026/event/000064C9D8229380",
          "name": "Fast Lane Access - Hypocrisy - Not a Concert Ticket",
          "type": "special entry",
          "dates": {
            "end": null,
            "start": {
              "dateTime": "2026-08-12T23:00:00Z",
              "localDate": "2026-08-12",
              "localTime": "19:00:00"
            },
            "status": {
              "code": "cancelled"
            },
            "timezone": "America/New_York"
          },
          "sales": {
            "public": {
              "endDateTime": "2026-08-13T01:00:00Z",
              "startDateTime": "2026-06-12T16:00:00Z"
            }
          },
          "images": [
            {
              "url": "https://s1.ticketm.net/dam/a/dc9/e5792e93-5656-47f0-9960-487ce37f5dc9_SOURCE",
              "ratio": "16_9",
              "width": 2426,
              "height": 1365
            }
          ],
          "venues": [
            {
              "id": "KovZpZAEAdaA",
              "city": {
                "name": "New York"
              },
              "name": "Gramercy Theatre",
              "state": {
                "name": "New York",
                "stateCode": "NY"
              },
              "address": {
                "line1": "127 East 23rd Street"
              },
              "country": {
                "countryCode": "US"
              },
              "postalCode": "10010"
            }
          ],
          "attractions": [
            {
              "id": "K8vZ917pnO0",
              "name": "Live Nation Fast Lane"
            }
          ],
          "price_ranges": null,
          "classifications": [
            {
              "genre": {
                "name": "Undefined"
              },
              "segment": {
                "name": "Miscellaneous"
              },
              "subGenre": {
                "name": "Undefined"
              }
            }
          ]
        }
      ],
      "total_pages": 133,
      "total_elements": 399
    },
    "status": "success"
  }
}

About the Ticketmaster API

Searching Events

The search_events endpoint accepts city, state_code, and country_code to scope results geographically, plus an optional keyword to match against event names and classifications (e.g. 'concert', 'basketball'). Results are zero-indexed via the page and size parameters — size goes up to 200 — and can be sorted with the sort parameter using values like 'date,asc' or 'relevance,desc'. Each event object in the events array includes price_ranges (min/max when the data is available), classifications (genre, segment, sub-genre), dates with start/end timestamps, venues with address and geo coordinates, attractions (performers), and a direct url to purchase tickets.

Event Detail

Once you have an id from search_events, pass it to get_event_tickets to get the full record for that event. The response adds fields not available in search results: a seatmap URL, the sales object with public sale start and end datetimes, tm_id (Ticketmaster's internal identifier), and a richer images array with width, height, and ratio for each asset. The dates object here includes a status code and timezone field, which is useful when displaying event times to users across regions.

Coverage and Filtering

Geographic filtering relies on city and state_code (two-letter US codes like 'NY') or country_code for international queries. Keyword filtering is optional — omitting it returns all events in the specified location. price_ranges are present when Ticketmaster exposes them for the event; they may be null for events where pricing has not yet been published or is handled by the venue.

Reliability & maintenance

The Ticketmaster API is a managed, monitored endpoint for ticketmaster.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ticketmaster.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ticketmaster.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Latest check
0/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a local events calendar filtered by city and date using city, state_code, and sort=date,asc
  • Display ticket price ranges for concerts or sports games in a travel or itinerary app
  • Monitor when public ticket sales open for specific events using the sales object from get_event_tickets
  • Aggregate event images by ratio and resolution for a media-rich event discovery feed
  • Map live events near a given location using venues geo coordinates from search results
  • Track performer and attraction data across multiple event pages using the attractions field
  • Alert users when a keyword-matched event (e.g. a specific band name) appears in their city
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Ticketmaster have an official developer API?+
Yes. Ticketmaster operates the Ticketmaster Developer Platform at https://developer.ticketmaster.com/, which provides official access to its Discovery API and other products under defined usage terms.
What does `get_event_tickets` return beyond what `search_events` includes?+
get_event_tickets adds a seatmap URL, the sales object with precise public sale start and end datetimes, a tm_id field (Ticketmaster's internal identifier), a type field distinguishing event kinds like 'special entry', and a more complete images array with per-image width, height, and ratio values. The dates object also includes a status code and timezone field not surfaced in search results.
Are price ranges always present in results?+
No. The price_ranges field is included when Ticketmaster has published pricing for the event. For events where ticket prices have not yet been set or are managed externally by the venue, the field may be null. Treat price_ranges as optional in your data model.
Does the API support filtering by specific venue, artist, or event category?+
Currently the API filters by city, state_code, country_code, and free-text keyword. There is no dedicated parameter for venue ID, artist ID, or classification segment. You can fork this API on Parse and revise it to add an endpoint that filters by attraction or venue identifier.
Can I retrieve resale or secondary market ticket data?+
Not currently. The API covers primary market events with official Ticketmaster pricing and sale dates. Secondary market or resale listings are not included in the response fields. You can fork this API on Parse and revise it to add an endpoint targeting resale inventory.
Page content last updated . Spec covers 2 endpoints from ticketmaster.com.
Related APIs in EntertainmentSee all →
ticketmaster.ie API
Search for live events and ticket availability across Ticketmaster Ireland, then view detailed event information and browse resale listings to find better deals. Check real-time resale availability to compare prices and secure tickets for concerts, sports, theater, and more.
ticketmaster.com.mx API
Search for events across Mexico on Ticketmaster and retrieve detailed information including dates, venues, ticket availability, and artist lineups. Filter results by region, keyword, or category to find concerts, theater, sports, and family events.
ticketmaster.de API
Access data from ticketmaster.de.
ticketmaster.nl API
Search for events on Ticketmaster Netherlands and access detailed information including event specifics and resale ticket listings. Browse available shows, concerts, and performances with complete event manifests to find exactly what you're looking for.
seatgeek.com API
Search for events and performers, view ticket listings with pricing data, and explore venue information across multiple event categories. Get real-time insights into event details, ticket price trends, and what's currently trending to help you find and compare tickets.
etix.com API
Search for live events across venues and categories, discover what's playing today or this weekend, and check real-time ticket availability for concerts, shows, and other ticketed events. Get detailed event information and browse featured homepage listings to find and book tickets for your next outing.
shop.ticketera.com API
Search for events on Ticketera, retrieve detailed event information including pricing and ticket categories, and check real-time seat availability for any performance. Ideal for browsing upcoming shows, comparing ticket options, and finding open seats before purchasing.
vividseats.com API
Search for events, venues, and performers, then browse current ticket listings with detailed seat information and pricing to find the perfect show. Analyze historical sales data to track ticket price trends and make informed purchasing decisions.