Discover/ticketmaster.com.mx API
live

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.

Endpoints
3
Updated
14d ago
Try it
Page number (1-indexed)
Sort order: 'date' or 'relevance'
Search keyword (e.g. artist name, event name, genre)
Region code: '801' (Todo México), '802' (Ciudad de México), '803' (Monterrey), '804' (Guad
api.parse.bot/scraper/95ab3ad7-5151-47ef-99b3-ad404d90f541/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/95ab3ad7-5151-47ef-99b3-ad404d90f541/search_events?sort=relevance&query=Coldplay&region=802' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

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.

Input
ParamTypeDescription
pageintegerPage number (1-indexed)
sortstringSort order: 'date' or 'relevance'
querystringSearch keyword (e.g. artist name, event name, genre)
regionstringRegion code: '801' (Todo México), '802' (Ciudad de México), '803' (Monterrey), '804' (Guadalajara)
Response
{
  "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.

Common use cases
  • Build an event calendar app scoped to Ciudad de México using the 802 region code and date sort.
  • Monitor upcoming concerts for a specific artist by querying the artist name and tracking status changes across poll cycles.
  • Aggregate venue schedules by filtering search_events results on the venue field across multiple region codes.
  • Create a cross-genre event discovery feed for Mexico City by paginating through search_events with no keyword filter.
  • Enrich a ticketing recommendation engine with artist lineup data from the artists field in event detail responses.
  • Track event availability for sold-out alerts by polling get_event_details for specific event IDs and checking the status field.
  • Build a Monterrey-specific events widget using region code 803 filtered by event category keywords.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 operates an official developer platform at developer.ticketmaster.com with REST APIs covering discovery, commerce, and more. That platform is US-focused and may not expose the full catalog available on ticketmaster.com.mx.
What does the `source` field in `get_event_details` indicate?+
It tells you how the event record was retrieved. A value of 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?+
Not currently. The API returns event 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?+
The four supported region codes are 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)?+
The 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.
Page content last updated . Spec covers 3 endpoints from ticketmaster.com.mx.
Related APIs in EntertainmentSee all →
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
vg.no API
Access VG.no's latest news, articles, sports scores, and TV guides through a single interface where you can browse the front page, search articles by topic, view category-specific content, and find related stories. Get real-time sports scores and television schedules alongside comprehensive news coverage from Norway's leading news outlet.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
novelbin.me API
Search and browse novels by title, genre, or popularity, and explore trending, completed, or recently updated works. Access full novel details, chapter listings, chapter content, author information, related titles, and reader comments. Authenticated users can manage bookmarks with reading-status tracking and subscribe to novels for update notifications.
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.
glastonburyfestivals.co.uk API
Discover historical and current Glastonbury Festival line-ups, find artist set times and stage locations, and search for specific performers across all festival years. Stay updated with the latest festival news and explore detailed information about festival areas and stages.
puntoticket.com API
Browse and search events happening in Chile with PuntoTicket, viewing featured shows, filtering by category, and checking detailed pricing and availability for concerts, theater, sports, and more. Find the perfect event by exploring all listings or discovering what's trending right now.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.
Ticketmaster Mexico API – Events & Venues · Parse