Ticketmaster event
curl --request GET \
--url https://api.eventory.ai/eventory/data/ticketmaster/{tm_event_id} \
--header 'apikey: <api-key>'import requests
url = "https://api.eventory.ai/eventory/data/ticketmaster/{tm_event_id}"
headers = {"apikey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apikey: '<api-key>'}};
fetch('https://api.eventory.ai/eventory/data/ticketmaster/{tm_event_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"ticketmaster_event": {
"scrapeRuns": [
{
"region": "US",
"created_date_time": "2026-06-12T05:00:00Z"
}
],
"sectionStats": [
{
"section_name": "101",
"capacity": "250",
"available_stock": "33",
"sold_amount": "217",
"created_date_time": "2026-06-12T05:00:00Z"
}
],
"offerStats": [
{
"offer_name": "Standard",
"offer_stock": 120,
"average_price_fees": 110,
"average_price_no_fees": 95,
"offer_type": 0,
"currency": "USD",
"created_date_time": "2026-06-12T05:00:00Z"
}
],
"statisticsHistory": [
{
"tickets_sold": 200,
"tickets_sold_24h": 15,
"available_tickets": 320,
"created_date_time": "2026-06-12T05:00:00Z",
"highest_price": "180",
"lowest_price": "45",
"average_ticket_price_available": "97",
"average_ticket_price_standard": "88",
"average_ticket_price_resell": "120",
"average_ticket_price_platinum": "150",
"capacity": 520,
"currency": "USD"
}
]
},
"latest_stats": {
"tickets_sold": 1000,
"available_tickets": 550
},
"dashboard_v2": {
"currency": "USD",
"current_values": {
"total_tickets_sold": 1000,
"tickets_sold_last_24h": 40,
"tickets_sold_last_24h_percentage": 4.1,
"available_tickets": 550,
"available_tickets_delta_percentage": -1.3,
"listing_available": 120,
"average_sales_price": "0",
"average_listing_price": "105",
"get_in_price": "48"
},
"charts": {
"timestamps": [
"2026-06-11",
"2026-06-12"
],
"total_tickets_sold": [
960,
1000
],
"tickets_sold_last_24h": [
32,
40
],
"available_tickets": [
610,
550
],
"listing_available": [
150,
120
],
"average_listing_price": [
"99",
"105"
],
"get_in_price": [
"44",
"48"
]
}
}
}Market Data
Ticketmaster event
Returns Ticketmaster event data (scrape runs, per-section and per-offer snapshot stats, statistics history), the latest aggregate stats, and the dashboard chart payload. The three blocks are fetched in parallel.
scrapeRuns and statisticsHistory are sorted newest first and trimmed
to limit. sectionStats and offerStats contain only the rows of the
most recent scrape run.
The inner shapes are stable but additive: new keys may appear without notice.
Cost: 1 credit.
GET
/
eventory
/
data
/
ticketmaster
/
{tm_event_id}
Ticketmaster event
curl --request GET \
--url https://api.eventory.ai/eventory/data/ticketmaster/{tm_event_id} \
--header 'apikey: <api-key>'import requests
url = "https://api.eventory.ai/eventory/data/ticketmaster/{tm_event_id}"
headers = {"apikey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apikey: '<api-key>'}};
fetch('https://api.eventory.ai/eventory/data/ticketmaster/{tm_event_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"ticketmaster_event": {
"scrapeRuns": [
{
"region": "US",
"created_date_time": "2026-06-12T05:00:00Z"
}
],
"sectionStats": [
{
"section_name": "101",
"capacity": "250",
"available_stock": "33",
"sold_amount": "217",
"created_date_time": "2026-06-12T05:00:00Z"
}
],
"offerStats": [
{
"offer_name": "Standard",
"offer_stock": 120,
"average_price_fees": 110,
"average_price_no_fees": 95,
"offer_type": 0,
"currency": "USD",
"created_date_time": "2026-06-12T05:00:00Z"
}
],
"statisticsHistory": [
{
"tickets_sold": 200,
"tickets_sold_24h": 15,
"available_tickets": 320,
"created_date_time": "2026-06-12T05:00:00Z",
"highest_price": "180",
"lowest_price": "45",
"average_ticket_price_available": "97",
"average_ticket_price_standard": "88",
"average_ticket_price_resell": "120",
"average_ticket_price_platinum": "150",
"capacity": 520,
"currency": "USD"
}
]
},
"latest_stats": {
"tickets_sold": 1000,
"available_tickets": 550
},
"dashboard_v2": {
"currency": "USD",
"current_values": {
"total_tickets_sold": 1000,
"tickets_sold_last_24h": 40,
"tickets_sold_last_24h_percentage": 4.1,
"available_tickets": 550,
"available_tickets_delta_percentage": -1.3,
"listing_available": 120,
"average_sales_price": "0",
"average_listing_price": "105",
"get_in_price": "48"
},
"charts": {
"timestamps": [
"2026-06-11",
"2026-06-12"
],
"total_tickets_sold": [
960,
1000
],
"tickets_sold_last_24h": [
32,
40
],
"available_tickets": [
610,
550
],
"listing_available": [
150,
120
],
"average_listing_price": [
"99",
"105"
],
"get_in_price": [
"44",
"48"
]
}
}
}Authorizations
Your Eventory API key. Sent as the apikey request header.
Path Parameters
Ticketmaster event id as it appears in the event URL.
Example:
"0200642CF18CAA24"
Query Parameters
Maximum entries in scrapeRuns, statisticsHistory, and the dashboard chart series.
Required range:
1 <= x <= 1000