Discover/Ticketmaster API
live

Ticketmaster APIticketmaster.ie

Search events on Ticketmaster Ireland, get event details, check resale availability, and retrieve resale listings. Returns titles, dates, venues, artists, and ticket status.

Endpoint health
verified 7d ago
search_events
check_resale_availability
2/2 passing latest checkself-healing
Endpoints
4
Updated
21d ago

What is the Ticketmaster API?

This API provides 4 endpoints for querying live event data from Ticketmaster Ireland, covering concerts, sports, and theatre. The search_events endpoint accepts a keyword and returns paginated results including event IDs, titles, dates, venue details, artist names, sold-out status, and cancellation flags. Additional endpoints let you pull full event details, check resale availability, and retrieve individual resale listings by event ID.

Try it
Search keyword for finding events (e.g. 'Coldplay', 'Taylor Swift', 'concert', 'Electric Picnic').
api.parse.bot/scraper/6145916b-fa04-4288-bc0f-dcff9714d627/<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/6145916b-fa04-4288-bc0f-dcff9714d627/search_events?query=concert' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ticketmaster-ie-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Ticketmaster IE SDK — search events, check resale availability."""
from parse_apis.ticketmaster_ie_api import TicketmasterIE, NotFoundError

client = TicketmasterIE()

# Search for concerts, capped at 5 results
for event in client.events.search(query="concert", limit=5):
    print(event.title, event.venue.name, event.venue.city)
    print(f"  Date: {event.dates.start_date}, Sold out: {event.sold_out}")

# Drill into one event's resale status
event = client.events.search(query="festival", limit=1).first()
if event:
    print(f"Event: {event.title} (ID: {event.id})")
    resale = client.resalestatuses.check(event_id=event.id)
    print(f"  Resale available: {resale.is_resale_available}, Status: {resale.event_status}")

# Typed error handling
try:
    resale = client.resalestatuses.check(event_id="INVALID_ID_999")
except NotFoundError as exc:
    print(f"Event not found: {exc}")

print("exercised: events.search / resalestatuses.check / Event / Venue / EventDates")
All endpoints · 4 totalmissing one? ·

Search for events on ticketmaster.ie by keyword. Returns a paginated list of matching events with IDs, titles, dates, venue information, artists, and ticketing status. Results are ordered by date. Returns up to 20 results per call.

Input
ParamTypeDescription
queryrequiredstringSearch keyword for finding events (e.g. 'Coldplay', 'Taylor Swift', 'concert', 'Electric Picnic').
Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of matching events",
    "events": "array of event objects with id, title, url, dates, venue, artists, sold_out, ticketing_status, cancelled, postponed"
  },
  "sample": {
    "data": {
      "total": 10000,
      "events": [
        {
          "id": "180064447C6B407D",
          "url": "https://www.ticketmaster.ie/onoir-in-concert-co-mayo-25-07-2026/event/180064447C6B407D",
          "dates": {
            "startDate": "2026-07-25T19:00:00Z",
            "onsaleDate": "2026-02-06T10:00:00Z",
            "dateDisplay": "showDateTime",
            "spanMultipleDays": false
          },
          "title": "Onóir In Concert",
          "venue": {
            "url": "https://www.ticketmaster.ie/tf-royal-castlebar-tickets-co-mayo/venue/198358",
            "city": "Co. Mayo",
            "name": "TF Royal, Castlebar",
            "state": "MO",
            "country": "IE",
            "latitude": 53.85285569,
            "longitude": -9.30493176,
            "countryCode": "IE",
            "countryName": "Ireland"
          },
          "artists": [
            {
              "url": "https://www.ticketmaster.ie/onoir-tickets/artist/5437559",
              "name": "Onóir"
            }
          ],
          "sold_out": false,
          "cancelled": false,
          "postponed": false,
          "ticketing_status": "OK"
        }
      ]
    },
    "status": "success"
  }
}

About the Ticketmaster API

Event Search and Listings

The search_events endpoint takes a single required query string — an artist name, event title, or genre keyword — and returns a total count alongside an events array. Each event object includes id, title, url, dates, venue, artists, sold_out, ticketing_status, cancelled, and postponed fields. The ticketing_status field distinguishes between events that are on sale, off sale, or in a pre-sale window, while cancelled and postponed flags let you filter out unavailable events without additional requests.

Event Details and Resale

The get_event_details endpoint accepts an event_id and returns a full props object containing the complete data payload for that event. This is the appropriate call when you need richer metadata beyond what search_events surfaces. The check_resale_availability endpoint returns listing_count and is_resale_available as a quick boolean check — useful for filtering a list of events down to only those with active secondary-market tickets before making heavier calls.

Resale Listings

The get_resale_listings endpoint retrieves the full array of resale ticket listings for a given event_id. The response includes a message field alongside the listings array. This is specific to Ticketmaster Ireland's secondary-market inventory, so listings reflect availability on ticketmaster.ie rather than any global Ticketmaster inventory pool.

Reliability & maintenanceVerified

The Ticketmaster API is a managed, monitored endpoint for ticketmaster.ie — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ticketmaster.ie 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.ie 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.

Last verified
7d ago
Latest check
2/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 an artist tour-tracker that polls search_events for new Irish dates and surfaces sold_out status changes.
  • Alert fans when is_resale_available flips to true for a previously sold-out event.
  • Aggregate venue data across search results to map event density by location in Ireland.
  • Compare face-value ticketing_status against resale listings counts to estimate demand for a given event.
  • Filter event feeds by cancelled or postponed flags to push timely notifications to ticket holders.
  • Display event discovery widgets that show artists, dates, and url fields from search_events results on a blog or fan site.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. 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 offers the Ticketmaster Developer API at developer.ticketmaster.com, which covers global inventory. The Parse API is scoped specifically to ticketmaster.ie and its Ireland-specific event listings and resale market.
What does `search_events` return beyond basic event titles?+
Each event object includes id, title, url, dates, venue, artists, sold_out, ticketing_status, cancelled, and postponed. The ticketing_status field distinguishes on-sale, off-sale, and pre-sale states, and the cancelled and postponed booleans let you surface event status changes without fetching full details.
Can I filter search results by date range, event category, or venue?+
The search_events endpoint currently accepts only a query keyword. Date-range, category, and venue filters are not exposed as parameters. You can fork this API on Parse and revise it to add those filter inputs if your use case requires them.
Does the API cover ticket pricing for resale listings?+
The get_resale_listings endpoint returns a listings array and a message field, but explicit price fields are not guaranteed in the current response shape. You can fork the API on Parse and revise the endpoint to surface price data if the underlying listing objects contain it.
Is this API limited to Ireland, or does it cover UK and European Ticketmaster events?+
The API is scoped to ticketmaster.ie only. Events listed on Ticketmaster UK (ticketmaster.co.uk) or other European Ticketmaster domains are not covered. You can fork this API on Parse and revise it to target a different regional Ticketmaster domain.
Page content last updated . Spec covers 4 endpoints from ticketmaster.ie.
Related APIs in EntertainmentSee all →
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.
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.
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.
marketplace.ticketek.com.au API
Search and browse resale tickets on Ticketek Marketplace across Australian events by keyword, view available performances and dates, and check detailed ticket listings with current pricing. Find all available ticket types for any city on a specific date to discover live entertainment options.
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.
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.
ticketone.it API
Browse upcoming events and search for artists or venues on TicketOne.it, then check real-time ticket availability and get detailed event information all in one place. Discover featured events by category or search directly to find events to attend.