tickets
tickets
Page 11 of 13.
Overview
- Feb26
World Reichert Festival
11:57 AM · East Jackycester Auditorium
- Mar31
Grand Larkin Show
12:41 AM · Montebello Amphitheater
- Jun28
Classic Leffler Gala
10:22 PM · West Harveyton Auditorium
- Apr1
National Lehner Tour
6:11 AM · Hilllworth Theater
- Apr11
National Kihn Championship
8:41 PM · Lake Reecechester Auditorium
- Jul29
The Yost Open
10:51 PM · South Fernandoland Stadium
- Jun26
The Gorczany Gala
7:08 AM · Stantonside Concert Hall
- Jan18
International Heller Gala
2:55 PM · Modesto Theater
- Oct21
Annual Kilback Summit
1:23 AM · West Darius Pavilion
- Feb3
Classic Shields Gala
9:39 AM · Boganburgh Amphitheater
- Jul16
World Torphy Gala
4:16 PM · Fort Reuben Pavilion
- Jan11
National Fritsch Open
9:11 PM · North Reinastad Amphitheater
- Dec9
Classic Towne Open
6:22 AM · Kalamazoo Convention Center
- Mar27
National Altenwerth Festival
3:27 AM · East Traceyhaven Concert Hall
- Oct11
National Durgan Exhibition
9:07 AM · Paradise Amphitheater
- Jun11
Ultimate Stehr Tour
2:53 PM · Edenport Pavilion
- Jul26
World Miller Tour
3:33 PM · Gleichnerworth Concert Hall
- Jun10
Annual Kautzer Tour
2:38 PM · Farrellborough Pavilion
- Nov26
Grand Bode Concert
2:33 PM · Israelbury Auditorium
- Jun7
The Bradtke Summit
8:57 AM · Fort Devan Convention Center
- Feb26
Ultimate Donnelly Championship
11:08 PM · Garden Grove Concert Hall
- Oct30
Grand Daniel Open
12:00 AM · Brandonhaven Convention Center
- Sep26
Ultimate Vandervort Festival
7:17 PM · Antwanfurt Stadium
- Apr17
National Feest Finals
5:37 AM · Stoltenbergworth Convention Center
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": 241,
"eventName": "World Reichert Festival",
"venue": "East Jackycester Auditorium",
"eventAt": "2026-02-26T11:57:35.466Z",
"type": "vip",
"price": 42.63,
"currency": "GBP",
"sectionCode": "D1",
"seatCode": "V5",
"isSold": false,
"createdAt": "2025-11-02T11:57:35.466Z"
},
{
"id": 242,
"eventName": "Grand Larkin Show",
"venue": "Montebello Amphitheater",
"eventAt": "2027-03-31T00:41:46.831Z",
"type": "general",
"price": 28.49,
"currency": "USD",
"sectionCode": "A2",
"seatCode": null,
"isSold": true,
"createdAt": "2026-12-25T00:41:46.831Z"
},
{
"id": 243,
"eventName": "Classic Leffler Gala",
"venue": "West Harveyton Auditorium",
"eventAt": "2026-06-28T22:22:58.289Z",
"type": "general",
"price": 314.92,
"currency": "MXN",
"sectionCode": "A1",
"seatCode": null,
"isSold": true,
"createdAt": "2026-01-17T22:22:58.289Z"
}
],
"meta": {
"page": 11,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/tickets?page=11&limit=24",
"first": "/api/v1/tickets?page=1&limit=24",
"last": "/api/v1/tickets?page=13&limit=24",
"next": "/api/v1/tickets?page=12&limit=24",
"prev": "/api/v1/tickets?page=10&limit=24"
}
}