AXS Tix Ticket Availability Checker
Pricing
from $0.15 / axs live availability check
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
Maintained by CommunityActor stats
2
Bookmarked
6
Total users
1
Monthly active users
5 days ago
Last modified
Categories
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
| Field | Type | Description |
|---|---|---|
platform | string | Ticketing platform. Always axs. |
url | string | Checked AXS Tix event URL. |
checked_at | string | Timestamp of the live check. |
available | boolean | Whether tickets are currently available. |
count | number | Total available ticket count. |
count_display | string | Human-readable ticket count. |
count_is_lower_bound | boolean | Whether the count should be treated as a lower-bound estimate. |
sections | array | Section-level availability and price data. |
sections[].section | string | Section name or identifier. |
sections[].quantity | number | Available ticket quantity in that section. |
sections[].min_base_price | number/null | Minimum base price in the section. |
sections[].max_base_price | number/null | Maximum base price in the section. |
sections[].min_total_price | number/null | Minimum total price when available. |
sections[].max_total_price | number/null | Maximum total price when available. |
sections[].checkout_price | number/null | Checkout price when available. |
sections[].offer_id | string/null | AXS offer identifier when available. |
sections[].offer_type | string/null | Offer type when available. |
sections[].seat_types | array | Seat type labels when available. |
tickets | array | Raw ticket-level records when available. Usually empty for section-level results. |
duration_ms | number | Runtime duration of the availability check. |
status | string | ok or error. |
error | string/null | Error 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.comURLs are supported. - Availability can change quickly.
- If AXS returns no available inventory, the Actor returns
available: falseandcount: 0. - Invalid URLs fail with a clear error message.