AXS Tix Ticket Availability Checker avatar

AXS Tix Ticket Availability Checker

Pricing

from $0.15 / axs live availability check

Go to Apify Store
AXS Tix Ticket Availability Checker

AXS Tix Ticket Availability Checker

Get live ticket availability, ticket count, and sections from tix.axs.com event links.

Pricing

from $0.15 / axs live availability check

Rating

5.0

(2)

Developer

hardproger

hardproger

Maintained by Community

Actor stats

2

Bookmarked

6

Total users

1

Monthly active users

5 days ago

Last modified

Share

Get live ticket availability from tix.axs.com event links.

This Actor accepts a single AXS Tix event URL and returns current ticket availability, total ticket count, available sections, and price ranges when available.

What It Returns

  • Ticket availability status
  • Total available ticket count
  • Section-level availability
  • Available quantity per section
  • Base and total price ranges when available
  • Response status and check duration
  • Original checked event URL
  • Timestamp of the check

Input

{
"url": "https://tix.axs.com/..."
}

Only full https://tix.axs.com/... event links are accepted.

Output Example

{
"platform": "axs",
"url": "https://tix.axs.com/...",
"checked_at": "2026-07-09T08:19:59.343455+00:00",
"available": true,
"count": 3430,
"count_display": "3430",
"count_is_lower_bound": false,
"sections": [
{
"section": "101",
"quantity": 131,
"min_base_price": 113.4,
"max_base_price": 156.03,
"min_total_price": 113.4,
"max_total_price": 156.03,
"checkout_price": null,
"offer_id": "example-offer-id",
"offer_type": "standard",
"seat_types": []
},
{
"section": "102",
"quantity": 84,
"min_base_price": 95.0,
"max_base_price": 145.0,
"min_total_price": 95.0,
"max_total_price": 145.0,
"checkout_price": null,
"offer_id": "example-offer-id-2",
"offer_type": "standard",
"seat_types": []
}
],
"tickets": [],
"duration_ms": 2734,
"status": "ok",
"error": null
}

Output Fields

FieldTypeDescription
platformstringTicketing platform. Always axs.
urlstringChecked AXS Tix event URL.
checked_atstringTimestamp of the live check.
availablebooleanWhether tickets are currently available.
countnumberTotal available ticket count.
count_displaystringHuman-readable ticket count.
count_is_lower_boundbooleanWhether the count should be treated as a lower-bound estimate.
sectionsarraySection-level availability and price data.
sections[].sectionstringSection name or identifier.
sections[].quantitynumberAvailable ticket quantity in that section.
sections[].min_base_pricenumber/nullMinimum base price in the section.
sections[].max_base_pricenumber/nullMaximum base price in the section.
sections[].min_total_pricenumber/nullMinimum total price when available.
sections[].max_total_pricenumber/nullMaximum total price when available.
sections[].checkout_pricenumber/nullCheckout price when available.
sections[].offer_idstring/nullAXS offer identifier when available.
sections[].offer_typestring/nullOffer type when available.
sections[].seat_typesarraySeat type labels when available.
ticketsarrayRaw ticket-level records when available. Usually empty for section-level results.
duration_msnumberRuntime duration of the availability check.
statusstringok or error.
errorstring/nullError message if the check failed.

Common Use Cases

  • Check whether an AXS event has tickets available.
  • Retrieve live section-level inventory.
  • Compare available ticket counts across events.
  • Feed AXS availability data into monitoring, reporting, or pricing workflows.
  • Automate one-off AXS Tix inventory checks through the Apify API.

Pricing

Each successful dataset item represents one live AXS availability check.

A first-time event check may require multiple internal AXS requests, so the price is charged per successful result rather than per internal request.

Notes

  • Only tix.axs.com URLs are supported.
  • Availability can change quickly.
  • If AXS returns no available inventory, the Actor returns available: false and count: 0.
  • Invalid URLs fail with a clear error message.