Discover/AXS API
live

AXS APIaxs.com

Access AXS.com event listings, venue data, performer info, and ticket pricing via 10 endpoints covering US and UK events with category and location filters.

This API takes change requests — .
Endpoint health
verified 13h ago
search_events
get_event_detail
get_featured_events
search_events_by_category_with_pricing
get_uk_events_by_category
10/10 passing latest checkself-healing
Endpoints
10
Updated
14h ago

What is the AXS API?

The AXS API exposes 10 endpoints for querying live event data from AXS.com, including ticket pricing, venue coordinates, performer details, and marketplace availability. search_events returns flattened results across events, venues, and performers in a single call, while get_event_detail delivers full structured data for a specific event by ID — covering both AXS US and AXS UK platforms.

This call costs1 credit / call— charged only on success
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 (max 50)
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.
Call it over HTTPgrab 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=5&category=Music' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 10 totalmissing one? ·

Search for events, performers, or venues by keyword, category, and location. Returns matching events, venues, and performers in a flattened structure with total counts. Paginates via the page parameter.

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 (max 50)
categorystringMajor category: Music, Sports, or ArtsOrFamily
Response
{
  "type": "object",
  "fields": {
    "events": "array of event objects with id, eventTitle, venue, performers, ticketingStatusText, etc.",
    "venues": "array of venue objects with venueId, venueTitle, address, geo",
    "performers": "array of performer objects with performerId, performerTitle, media",
    "events_total": "integer, total number of matching events",
    "venues_total": "integer, total number of matching venues",
    "performers_total": "integer, total number of matching performers"
  },
  "sample": {
    "data": {
      "events": [
        {
          "id": "1422763",
          "venue": {
            "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",
          "ticketingStatusText": "Buy Tickets"
        }
      ],
      "venues": [
        {
          "venueId": 126134,
          "venueTitle": "RNCM Concert Hall"
        }
      ],
      "performers": [
        {
          "performerId": 1101901,
          "performerTitle": "ABBA The Concert"
        }
      ],
      "events_total": 2504,
      "venues_total": 57,
      "performers_total": 246
    },
    "status": "success"
  }
}

About the AXS API

Event Search and Discovery

search_events accepts a free-text query, a category (Music, Sports, or ArtsOrFamily), and optional lat/lng coordinates. Each response includes three parallel arrays — events, venues, and performers — plus integer totals for each. Pagination is handled via the page parameter with up to 50 results per page. For category-scoped browsing without a keyword, get_events_by_category and get_featured_events return arrays of event objects that include startDatetime, venueTitleLocalized, and veritix-sourced pricing fields.

Pricing and Availability Fields

Several endpoints explicitly extract minPrice and maxPrice from veritix pricing data and attach them directly to each event object. search_events_by_category_with_pricing adds these fields to category results, while search_events_by_category_with_pricing_daterange further filters those results by start_date and end_date (ISO format YYYY-MM-DD). When pricing data is absent for an event, both price fields return null rather than omitting them. search_axs_ticketed_events_by_category narrows results further to only events where axsTicketed is true, which excludes third-party-listed events.

Marketplace and UK Platform Coverage

get_marketplace_events returns only events available on the AXS secondary resale marketplace, identified by an axsMarketplace flag on each result. For UK coverage, get_uk_events_by_category queries the AXS UK platform (tickets-uk.axs.com) scoped to UK geography and returns a uk_url field alongside standard pricing and performer fields. get_event_detail handles both US and UK event IDs — the url field in the response points to the correct regional domain based on the event.

Venue and Location Data

list_cities returns paginated city records with geo (latitude/longitude), countryCode, stateNameLocalized, and countryNameLocalized. When lat/lng are supplied, results are sorted by distance. Venue objects across all search endpoints include venueId, venueTitle, address, and geo coordinates, making it straightforward to cross-reference events with specific locations.

Reliability & maintenanceVerified

The AXS API is a managed, monitored endpoint for axs.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when axs.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official axs.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
13h ago
Latest check
10/10 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a local event calendar by querying get_featured_events with lat/lng and displaying startDatetime and venueTitleLocalized.
  • Track ticket price ranges for upcoming concerts using search_events_by_category_with_pricing with category=Music and reading minPrice/maxPrice.
  • Find resale-available events near a location using get_marketplace_events and filtering on the axsMarketplace flag.
  • Monitor UK live events by category using get_uk_events_by_category and extracting uk_url and pricing fields.
  • Filter events within a specific travel window using search_events_by_category_with_pricing_daterange with start_date and end_date parameters.
  • Aggregate performer metadata across search results by collecting performerTitle and media fields from the performers array.
  • Build a venue directory from the venues array returned by search endpoints, using venueId, address, and geo for mapping.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does AXS have an official public developer API?+
AXS does not offer a publicly documented developer API for third-party use. Their developer platform at axs.com/developer targets box office and venue partners, not general API consumers.
What does `get_event_detail` return that the search endpoints don't?+
get_event_detail returns a full details object for a single event, including relatedMedia, complete dates data, and the full performers array with more granular fields. Search endpoints return flattened summaries suitable for listing pages; get_event_detail is suited for building individual event pages where you need the complete record.
Does the API cover individual seat maps or row-level inventory?+
Not currently. The API covers event-level pricing (minPrice/maxPrice), ticketing status, and marketplace availability flags, but does not expose seat maps, individual seat IDs, or row-level inventory. You can fork this API on Parse and revise it to add an endpoint targeting seat-level data if that surface becomes accessible.
How does pagination work across the search endpoints?+
Search endpoints that support pagination accept a page integer parameter and a results parameter capped at 50. The response includes events_total, venues_total, and performers_total counts so you can calculate how many pages to fetch. Endpoints like search_events_by_category_with_pricing_daterange apply date filtering after fetching a page, so the returned events_total reflects only matches on that page, not a global filtered count.
Are performer tour schedules or historical past events accessible?+
The API returns upcoming events associated with performers as part of search results, but does not include a dedicated endpoint for full tour schedules or historical past-event data. Coverage is limited to events currently listed on AXS. You can fork this API on Parse and revise it to add a performer-centric tour listing endpoint.
Page content last updated . Spec covers 10 endpoints from axs.com.
Related APIs in EntertainmentSee all →
etix.com API
Search for live events across venues and categories, discover what's playing today or this weekend, and check real-time ticket availability for concerts, shows, and other ticketed events. Get detailed event information and browse featured homepage listings to find and book tickets for your next outing.
seatgeek.com API
Search for events and performers, view ticket listings with pricing data, and explore venue information across multiple event categories. Get real-time insights into event details, ticket price trends, and what's currently trending to help you find and compare tickets.
stubhub.com API
Search and discover tickets across StubHub's marketplace by looking up events, performers, and categories to find exactly what you want to attend. Browse event details, performer schedules, and curated category collections to compare available tickets and make informed purchasing decisions.
SeeTickets.com API
Search for events and get detailed information about tickets, venues, and event categories on See Tickets. Browse upcoming events by category, view venue details, and find what you're looking for with search suggestions.
ticketmaster.com API
Find events happening near you by location and keyword, then view detailed information about ticket prices and availability for any show that interests you. Browse through search results with easy pagination to discover exactly what you're looking for.
vividseats.com API
Search for events, venues, and performers, then browse current ticket listings with detailed seat information and pricing to find the perfect show. Analyze historical sales data to track ticket price trends and make informed purchasing decisions.
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.
eventbrite.com API
Search Eventbrite for events by keyword, location, or category. Retrieve full event details, ticket pricing and availability, organizer profiles, and batch event data.