ticketmaster.com.mx APIticketmaster.com.mx ↗
Search and retrieve event data from ticketmaster.com.mx. Get concerts, sports, theater, and family events across Mexico with venue, date, and artist details.
curl -X GET 'https://api.parse.bot/scraper/95ab3ad7-5151-47ef-99b3-ad404d90f541/search_events?sort=relevance&query=Coldplay®ion=802' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for events on ticketmaster.com.mx with support for keywords, regions, and pagination. Returns events sorted by date or relevance across all of Mexico or filtered by region.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (1-indexed) |
| sort | string | Sort order: 'date' or 'relevance' |
| query | string | Search keyword (e.g. artist name, event name, genre) |
| region | string | Region code: '801' (Todo México), '802' (Ciudad de México), '803' (Monterrey), '804' (Guadalajara) |
{
"type": "object",
"fields": {
"total": "integer total number of matching events",
"events": "array of event objects with title, id, dates, venue, artists, and status fields",
"singleVenue": "boolean indicating if all results are at a single venue"
},
"sample": {
"data": {
"total": 105962,
"events": [
{
"id": "3D00648A9D30346B",
"url": "https://www.ticketmaster.com.mx/rosana-presenta-mejor-vivir-sin-miedo-mexico-02-05-2026/event/3D00648A9D30346B",
"dates": {
"startDate": "2026-05-03T02:00:00Z"
},
"title": "Rosana presenta: Mejor Vivir Sin Miedo",
"venue": {
"city": "Mexico",
"name": "El Cantoral",
"state": "CDMX"
},
"artists": [
{
"name": "Rosana"
}
],
"soldOut": false,
"discoveryId": "G5dVZ_FnqGdol"
}
],
"singleVenue": false
},
"status": "success"
}
}About the ticketmaster.com.mx API
The Ticketmaster Mexico API exposes 3 endpoints for searching and retrieving event listings from ticketmaster.com.mx, covering concerts, sports, theater, and family events across Mexico. The search_events endpoint accepts keyword, region, sort order, and pagination parameters, returning event arrays with titles, dates, venue details, artist lineups, and availability status. A companion get_event_details endpoint delivers full per-event records by Ticketmaster event ID.
Endpoints and Data Returned
The search_events endpoint is the primary discovery surface. Pass a query string (artist name, genre, or event title), a region code, a sort value (date or relevance), and a page number to page through results. The response includes a total count of matching events, a boolean singleVenue flag, and an events array where each object carries the event's title, id, dates, venue, artists, and status.
Region Filtering
Four region codes are supported: 801 (Todo México), 802 (Ciudad de México), 803 (Monterrey), and 804 (Guadalajara). These codes are returned directly by the get_regions endpoint, which requires no parameters and returns a static key-value map. Passing 801 to search_events returns results across all of Mexico without geographic restriction.
Event Detail Lookup
get_event_details accepts an event_id (e.g. 3D00639FB2C115CB) and an event_name string. The event_name parameter is required for reliable results: if the event's page is access-protected, the endpoint falls back to locating the event through search results. The response includes the full event object — title, id, dates, venue, artists, status, and url — plus a source field indicating whether data came from the event page directly (event_page) or via the search fallback (search_results).
Coverage and Pagination
All event categories listed on ticketmaster.com.mx are in scope: music, sports, arts and theater, and family events. Pagination in search_events is 1-indexed via the page parameter. The total field in the response lets callers calculate how many pages are available for a given query.
- Build an event calendar app scoped to Ciudad de México using the
802region code and date sort. - Monitor upcoming concerts for a specific artist by querying the artist name and tracking
statuschanges across poll cycles. - Aggregate venue schedules by filtering
search_eventsresults on thevenuefield across multiple region codes. - Create a cross-genre event discovery feed for Mexico City by paginating through
search_eventswith no keyword filter. - Enrich a ticketing recommendation engine with artist lineup data from the
artistsfield in event detail responses. - Track event availability for sold-out alerts by polling
get_event_detailsfor specific event IDs and checking thestatusfield. - Build a Monterrey-specific events widget using region code
803filtered by event category keywords.
| 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 the `source` field in `get_event_details` indicate?+
event_page means the data came directly from the event's own page. A value of search_results means the event page was access-protected and the endpoint found the record through a search fallback using the event_name parameter. This distinction matters when you need to know whether all detail fields are fully populated.Does the API return ticket pricing or purchase URLs?+
status and a direct url field per event, but no ticket price tiers, fee breakdowns, or transactional purchase data. You can fork this API on Parse and revise it to add an endpoint targeting ticket pricing sections of individual event pages.Are regions beyond Ciudad de México, Monterrey, and Guadalajara supported?+
801 (Todo México), 802 (Ciudad de México), 803 (Monterrey), and 804 (Guadalajara), as returned by get_regions. Events in other Mexican cities are reachable via the 801 code but cannot be isolated by city. You can fork this API on Parse and revise it to add finer-grained regional codes if ticketmaster.com.mx exposes them.Is there a way to filter events by category (e.g. only sports or only theater)?+
search_events endpoint does not expose a dedicated category parameter. Category filtering can be approximated by passing genre or category terms as the query value. The API covers concerts, sports, theater, and family events in the same result pool. You can fork this API on Parse and revise it to add a category filter parameter if the source supports category-scoped queries.