ticketmaster.ie 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.
curl -X GET 'https://api.parse.bot/scraper/6145916b-fa04-4288-bc0f-dcff9714d627/search_events?query=Coldplay' \ -H 'X-API-Key: $PARSE_API_KEY'
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.
| Param | Type | Description |
|---|---|---|
| queryrequired | string | Search keyword for finding events (e.g. 'Coldplay', 'Taylor Swift', 'concert'). |
{
"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": 7,
"events": [
{
"id": "18006314E36BAC7B",
"url": "https://www.ticketmaster.ie/electric-picnic-2026-early-entry-pass-co-laois-27-08-2026/event/18006314E36BAC7B",
"dates": {
"startDate": "2026-08-27T13:00:00Z",
"onsaleDate": "2025-09-03T08:00:00Z",
"dateDisplay": "showDateTime",
"spanMultipleDays": false
},
"title": "Electric Picnic 2026 - Early Entry Pass (Event Ticket Not Included)",
"venue": {
"city": "Co. Laois",
"name": "Stradbally Hall",
"country": "IE",
"countryCode": "IE",
"countryName": "Ireland"
},
"artists": [
{
"name": "Electric Picnic"
}
],
"sold_out": false,
"cancelled": false,
"postponed": false,
"ticketing_status": "OK"
}
]
},
"status": "success"
}
}About the ticketmaster.ie 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.
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.
- Build an artist tour-tracker that polls
search_eventsfor new Irish dates and surfacessold_outstatus changes. - Alert fans when
is_resale_availableflips to true for a previously sold-out event. - Aggregate
venuedata across search results to map event density by location in Ireland. - Compare face-value
ticketing_statusagainst resalelistingscounts to estimate demand for a given event. - Filter event feeds by
cancelledorpostponedflags to push timely notifications to ticket holders. - Display event discovery widgets that show
artists,dates, andurlfields fromsearch_eventsresults on a blog or fan site.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Ticketmaster have an official developer API?+
What does `search_events` return beyond basic event titles?+
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?+
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?+
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.