tickets
tickets
Page 7 of 13.
Overview
- Jan12
Classic Von Gala
12:39 AM · Breitenbergfort Auditorium
- Sep27
Grand Wiza Finals
12:32 PM · Lake Hollyfurt Theater
- Mar19
Annual Ratke Concert
3:58 AM · Cormierberg Concert Hall
- Jul30
International Klein Concert
12:22 AM · Colefurt Pavilion
- Mar8
International Borer Tour
7:02 PM · Ramonton Convention Center
- Jan24
National Schaefer-Turcotte Championship
12:13 AM · Edmond Convention Center
- Jan13
World Collier Tour
1:01 PM · Port Ottischester Pavilion
- Apr19
International Von Exhibition
12:27 PM · Port Emie Pavilion
- May11
National Ernser Exhibition
8:20 AM · West Kara Stadium
- Nov13
Classic Franey Open
2:42 PM · East Simeon Auditorium
- Apr4
Classic Bartell Concert
4:28 AM · Tucson Theater
- Nov4
National Bernhard Festival
9:33 PM · North Savion Concert Hall
- Jun21
International Turner Festival
12:51 AM · North Violet Arena
- Mar14
World Beer Concert
12:48 PM · Port Cathyboro Stadium
- Jul5
National Franey Gala
7:13 AM · Compton Convention Center
- Oct16
International Howell Festival
1:38 AM · Cedar Park Convention Center
- May28
Grand Larson Exhibition
2:09 PM · Lillacester Arena
- Sep2
International Considine Championship
1:47 AM · North Charleston Arena
- Dec14
Grand Yost Concert
5:18 AM · Krismouth Arena
- Jul16
World Lesch Tour
9:13 AM · Apple Valley Convention Center
- Jul1
Grand Runte Show
12:37 AM · South Abigale Pavilion
- Aug9
Grand Franecki Show
10:08 AM · McLean Concert Hall
- Aug31
Annual Reilly Open
4:54 PM · Breitenbergburgh Auditorium
- Sep26
Grand Dare Gala
3:41 AM · Shawnee Pavilion
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/tickets?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/tickets.d.ts https://example-data.com/types/tickets.d.ts
import type { Ticket, ListEnvelope } from "./types/tickets";
const res = await fetch(
"https://example-data.com/api/v1/tickets?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Ticket>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 145,
"eventName": "Classic Von Gala",
"venue": "Breitenbergfort Auditorium",
"eventAt": "2027-01-12T00:39:12.401Z",
"type": "reserved",
"price": 23.7,
"currency": "CAD",
"sectionCode": "B2",
"seatCode": "I46",
"isSold": true,
"createdAt": "2026-10-10T00:39:12.401Z"
},
{
"id": 146,
"eventName": "Grand Wiza Finals",
"venue": "Lake Hollyfurt Theater",
"eventAt": "2026-09-27T12:32:44.510Z",
"type": "vip",
"price": 861.89,
"currency": "MXN",
"sectionCode": "B2",
"seatCode": "F17",
"isSold": false,
"createdAt": "2026-08-12T12:32:44.510Z"
},
{
"id": 147,
"eventName": "Annual Ratke Concert",
"venue": "Cormierberg Concert Hall",
"eventAt": "2026-03-19T03:58:54.879Z",
"type": "general",
"price": 406.79,
"currency": "GBP",
"sectionCode": "C1",
"seatCode": null,
"isSold": true,
"createdAt": "2026-01-19T03:58:54.879Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/tickets?page=7&limit=24",
"first": "/api/v1/tickets?page=1&limit=24",
"last": "/api/v1/tickets?page=13&limit=24",
"next": "/api/v1/tickets?page=8&limit=24",
"prev": "/api/v1/tickets?page=6&limit=24"
}
}