Discover/axs.com API
live

axs.com APIaxs.com

Access AXS.com event listings, venue details, performer data, and ticket availability via 5 structured endpoints covering search, categories, and featured events.

Endpoints
5
Updated
10d ago
Try it
Latitude for location-based search
Longitude for location-based search
Page number for results
Search keyword (event title, artist name, or venue name)
Number of results per page
Major category: Music, Sports, or ArtsOrFamily
api.parse.bot/scraper/bc13dcb0-0273-4999-8fec-897c0aad9c96/<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/bc13dcb0-0273-4999-8fec-897c0aad9c96/search_events?lat=40.7128&lng=-74.006&page=1&query=concert&results=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for events, performers, or venues by keyword, category, and location. Returns matching events, venues, and performers with pagination support.

Input
ParamTypeDescription
latnumberLatitude for location-based search
lngnumberLongitude for location-based search
pageintegerPage number for results
querystringSearch keyword (event title, artist name, or venue name)
resultsintegerNumber of results per page
categorystringMajor category: Music, Sports, or ArtsOrFamily
Response
{
  "type": "object",
  "fields": {
    "events": "object containing matches array of event objects with id, eventTitle, venue, performers, etc., plus total count",
    "venues": "object containing matches array of venue objects with venueId, venueTitle, address, geo, etc., plus total count",
    "performers": "object containing matches array of performer objects with performerId, performerTitle, media, etc., plus total count"
  },
  "sample": {
    "data": {
      "events": {
        "total": 2440,
        "matches": [
          {
            "id": "1422763",
            "venue": {
              "address": {
                "city": "Austin",
                "countryCode": "US",
                "stateProvince": "TX"
              },
              "venueId": 102546,
              "venueTitle": "Bass Concert Hall"
            },
            "eventId": 1422763,
            "eventURL": "https://www.axs.com/events/1422763/my-hero-academia-in-concert-tickets",
            "eventSlug": "my-hero-academia-in-concert-tickets",
            "eventTitle": "My Hero Academia in Concert",
            "majorCategory": "ArtsOrFamily"
          }
        ]
      },
      "venues": {
        "total": 57,
        "matches": []
      },
      "performers": {
        "total": 240,
        "matches": []
      }
    },
    "status": "success"
  }
}

About the axs.com API

The AXS API exposes 5 endpoints covering event search, detailed event records, city listings, featured events, and category browsing from AXS.com. The search_events endpoint returns matched events, venues, and performers in a single response, each with its own paginated results array. Event records include ticketing status, performer media, venue geo-coordinates, and start datetimes — enough to build a full event discovery or ticketing availability tool.

Event Search and Discovery

The search_events endpoint accepts a free-text query alongside optional lat/lng coordinates and a category filter (Music, Sports, or ArtsOrFamily). It returns three parallel result sets: events (with eventTitle, venue, performers, and a unique id), venues (with venueId, venueTitle, address, and geo coordinates), and performers (with performerId, performerTitle, and media). Each set includes a total count and supports pagination via page and results parameters.

Event Detail and Category Browsing

get_event_detail takes a required event_id (numeric string) and an optional slug — the URL slug significantly improves lookup reliability. The response wraps a details object containing eventTitle, venue, performers, ticketingStatusText, relatedMedia, and date fields, along with a full AXS page url and the resolved slug. For broader discovery, get_events_by_category accepts a required category and an optional subcategory string to narrow by genre or sub-type, returning event objects with titleLocalized, venueTitleLocalized, startDatetime, and pricing info sourced from Veritix.

Location Utilities

list_cities returns all AXS-supported cities with cityNameLocalized, stateNameLocalized, countryNameLocalized, geo coordinates, and country/state codes. Passing lat/lng sorts results by distance. get_featured_events surfaces homepage-promoted events for a given location (defaulting to New York if no coordinates are supplied), returning an array with titleLocalized, venueTitleLocalized, startDatetime, media, and Veritix pricing data alongside a numberOfResults count.

Common use cases
  • Build a local event calendar by querying get_events_by_category with user coordinates and a Music or Sports category filter.
  • Display real-time ticketing availability by pulling ticketingStatusText from get_event_detail for specific event IDs.
  • Populate a venue directory using the venues matches from search_events, including address and geo fields.
  • Create a performer profile page by extracting performerTitle and media from the performers array in search results.
  • Show featured events on a geo-aware landing page using get_featured_events with the visitor's lat/lng.
  • Support city-picker UI components with the full city list and coordinates returned by list_cities.
  • Track event availability changes by polling get_event_detail for ticketingStatusText on a set of monitored event IDs.
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 AXS have an official developer API?+
AXS does not publish a public developer API. There is no official endpoint documentation or developer portal available at axs.com for third-party access.
What does `search_events` return for a keyword query, and can I filter by location?+
A single call returns three distinct result objects: events, venues, and performers, each with their own matches array and a total count. You can pass lat and lng to bias results geographically, and use category to restrict to Music, Sports, or ArtsOrFamily. Pagination is controlled via page and results parameters.
Does the API expose individual ticket seat maps or per-seat pricing breakdowns?+
Not currently. Event responses include ticketingStatusText and Veritix pricing info at the event level, but seat-level maps and per-row pricing are not part of any endpoint's response shape. You can fork this API on Parse and revise it to add an endpoint targeting seat-map data if that granularity is needed.
How reliable is the `event_id` alone for looking up event details?+
Passing only event_id to get_event_detail can occasionally return ambiguous results. The slug parameter (the URL slug from an AXS event page, e.g. taylor-swift-the-eras-tour-tickets) is strongly recommended alongside the ID to ensure the correct event record is returned.
Does the API cover events outside the United States?+
list_cities returns cities with countryCode fields indicating international coverage, and search_events with coordinates can return non-US results where AXS operates. However, coverage depth varies by market and is determined by what AXS.com lists in a given region — there is no explicit international-only filter. You can fork the API on Parse and revise it to add region-scoped filtering if your use case is limited to specific countries.
Page content last updated . Spec covers 5 endpoints from axs.com.
Related APIs in EntertainmentSee all →
bet365.bet.br API
Access live betting odds, featured sports events, and real-time scores directly from bet365 Brazil's platform across multiple sports including Formula 1 and in-play markets. Get current match results, browse available betting categories, and view homepage promotions all through structured data endpoints.
pdga.com API
Access player profiles, ratings history, tournament events, live scoring, world rankings, and the course directory from the Professional Disc Golf Association.
viagogo.com API
Search for events and browse tickets across Viagogo's catalog, discovering performer schedules, ticket listings, and categories all in one place. Get detailed information about available tickets and events to find exactly what you're looking for.
bwfbadminton.com API
Track badminton tournaments worldwide by browsing the BWF calendar, viewing tournament draw brackets, and retrieving detailed match results with player stats and scores. Stay updated on competitions and analyze matchups with comprehensive tournament data from the Badminton World Federation.
mwcbarcelona.com API
Discover and explore MWC Barcelona 2026 exhibitors, speakers, and sessions by searching, filtering, and browsing by category, location, or type. Access detailed information about pavilions, agenda schedules, news updates, and pass options to plan your conference experience.
brickset.com API
Search and browse thousands of LEGO sets by theme, year, or keyword. Retrieve detailed data for any set including piece count, minifigure count, dimensions, RRP, and more. Explore the full catalog of themes and yearly releases available on Brickset.
formula1.com API
Get comprehensive Formula 1 data including race results, qualifying sessions, practice sessions, pit stops, and driver/team standings from 1950 to present. Track live race schedules, fastest laps, starting grids, and historical world champions to stay updated on all F1 season information.
nfl.com API
Access real-time NFL data including game schedules, scores, player statistics, team rosters, standings, injury reports, fantasy rankings, and the latest news — all from nfl.com.