ticketmaster.nl APIticketmaster.nl ↗
Access Ticketmaster Netherlands event listings, venue seat maps, resale ticket prices, and event details via 4 structured API endpoints.
curl -X GET 'https://api.parse.bot/scraper/53da0afb-f851-46f8-b3be-060e8b0b028c/search_events?query=concert' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for events on ticketmaster.nl using a keyword. Returns a paginated list of up to 20 events with their IDs, names, dates, venues, and availability status.
| Param | Type | Description |
|---|---|---|
| queryrequired | string | Search keyword (e.g., 'concert', 'festival', 'Amsterdam') |
{
"type": "object",
"fields": {
"total": "integer total number of matching events across all pages",
"events": "array of event objects with id, name, date, venue, city, country, url, sold_out, cancelled, artists"
},
"sample": {
"data": {
"total": 16393,
"events": [
{
"id": "1432752632",
"url": "https://www.ticketmaster.nl/event/twilight-in-concert-tickets/1432752632",
"city": "Eindhoven",
"date": "2026-10-20T18:15:00Z",
"name": "Twilight In Concert",
"venue": "Muziekgebouw Eindhoven",
"artists": [
"Twilight In Concert"
],
"country": "NL",
"sold_out": false,
"cancelled": false
}
]
},
"status": "success"
}
}About the ticketmaster.nl API
The Ticketmaster Netherlands API provides 4 endpoints covering event search, detailed event metadata, resale ticket listings, and venue seating manifests for ticketmaster.nl. Using search_events, you can query by keyword or city and receive paginated results including event IDs, dates, venues, artists, cancellation status, and availability — giving you the data needed to build event discovery tools or ticket-price monitors for the Dutch market.
Event Search and Details
The search_events endpoint accepts a keyword query (e.g., 'Amsterdam', 'festival') and returns up to 20 events per page, along with a total count for pagination. Each event object includes id, name, date, venue, city, country, url, sold_out, cancelled, and an artists array. The get_event_details endpoint goes deeper on a single event using its event_id, returning structured venue data (name, city, address, latitude, longitude), ticket_limit, sub_category, currency_code, image_url, has_sections, and canonical_url.
Resale Listings and Venue Manifests
The get_resale_listings endpoint takes an event_id and returns the total_resale count plus a resale_listings array that includes price, seat location where available, and seller information for verified secondary-market tickets. The get_event_manifest endpoint fetches the venue's seating structure: a levels array (each with a code and name) and a sections array (also code and name). This is useful for mapping resale listings to specific areas of a venue.
Coverage and Scope
All endpoints target ticketmaster.nl and return data scoped to the Netherlands. Currency is reported as currency_code (typically EUR). The sold_out and cancelled boolean fields on both search_events and get_event_details let you filter or alert on status changes without polling the full detail endpoint. Event IDs from search_events are the common key passed to all other endpoints.
- Build a Dutch event discovery app that filters shows by city using the
cityfield fromsearch_events. - Monitor resale ticket prices for specific events using
get_resale_listingsand alert when prices drop below a threshold. - Display an interactive venue seating map by combining
get_event_manifestsections with resale seat-location data. - Track event cancellations and sell-out status in real time using the
cancelledandsold_outfields. - Aggregate artist event schedules across Netherlands venues by parsing the
artistsarray fromsearch_events. - Build a ticket-limit-aware purchase assistant using
ticket_limitandcurrency_codefromget_event_details. - Index subcategory and genre metadata from
sub_categoryinget_event_detailsfor faceted event filtering.
| 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 `get_event_manifest` return, and how does it relate to resale listings?+
get_event_manifest returns two arrays — levels (floor/tier structure) and sections — each with a code and name. These map to the venue's physical layout. You can cross-reference section codes with seat-location data in get_resale_listings to place resale tickets on a seating chart.Does `search_events` return more than 20 results at a time?+
total integer indicating the full match count. To retrieve additional pages, use the total value to determine how many requests to make. There is no built-in page or offset parameter exposed on this endpoint currently.Does the API cover Ticketmaster markets outside the Netherlands?+
Are ticket category or genre filters supported in `search_events`?+
search_events endpoint accepts only a free-text query parameter. Category filtering is not currently a direct input. get_event_details does return a sub_category object per event, which you can use to filter results client-side. You can fork this API on Parse and revise it to add a category filter parameter if your use case requires server-side filtering.