tickets
tickets
Page 10 of 13.
Overview
- Feb26
International Christiansen Concert
4:44 AM · Evanston Stadium
- Oct18
The Fadel Show
1:31 PM · Minnetonka Arena
- Sep15
Annual Frami Summit
4:13 PM · New Cruz Arena
- Apr2
The Weissnat Finals
5:20 AM · South Wellington Stadium
- Jun28
National Towne Summit
11:31 PM · Rohnert Park Theater
- Mar17
The Swift Exhibition
12:47 PM · Bethboro Concert Hall
- Apr8
Ultimate Treutel Championship
3:40 PM · Angelitatown Concert Hall
- Sep10
Ultimate Thompson Summit
11:34 AM · West Myrlbury Stadium
- Mar5
Grand Yundt Championship
1:41 AM · East Saultown Convention Center
- Mar29
Classic Nitzsche Summit
3:15 AM · West Norval Stadium
- Aug29
National Green Show
6:10 AM · O'Reillyberg Convention Center
- Aug16
Grand Ratke Championship
6:08 PM · Fort Eldridgeland Amphitheater
- Jul21
International Hilpert Gala
4:39 PM · South Cristian Convention Center
- Feb24
The Lehner Summit
11:30 AM · San Mateo Amphitheater
- Jan5
The Labadie Gala
12:27 AM · Fort Julesstead Stadium
- Jan17
International Medhurst-Swaniawski Show
9:55 AM · East Hayleeborough Pavilion
- Sep13
National Conroy Festival
3:48 PM · Port Alishaboro Amphitheater
- Sep6
World Bergnaum Exhibition
5:24 AM · Sydnicester Arena
- Oct16
Grand Mueller Concert
6:02 PM · New Jeanfurt Stadium
- Mar29
Ultimate Kessler Gala
1:02 AM · North Quintenport Stadium
- May29
Ultimate Schroeder Show
2:38 AM · New Inesmouth Arena
- Jan2
Ultimate Emard Gala
1:37 AM · Nolaboro Pavilion
- Jan4
Ultimate Wyman Championship
12:34 PM · South Roderick Amphitheater
- Nov7
The Runolfsdottir Summit
11:57 PM · Aufderharborough Arena
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": 217,
"eventName": "International Christiansen Concert",
"venue": "Evanston Stadium",
"eventAt": "2027-02-26T04:44:29.240Z",
"type": "general",
"price": 868.29,
"currency": "GBP",
"sectionCode": "A2",
"seatCode": null,
"isSold": true,
"createdAt": "2026-11-02T04:44:29.240Z"
},
{
"id": 218,
"eventName": "The Fadel Show",
"venue": "Minnetonka Arena",
"eventAt": "2026-10-18T13:31:25.189Z",
"type": "vip",
"price": 700.88,
"currency": "EUR",
"sectionCode": "A2",
"seatCode": "F24",
"isSold": false,
"createdAt": "2026-09-01T13:31:25.189Z"
},
{
"id": 219,
"eventName": "Annual Frami Summit",
"venue": "New Cruz Arena",
"eventAt": "2025-09-15T16:13:10.363Z",
"type": "vip",
"price": 349.28,
"currency": "AUD",
"sectionCode": "A2",
"seatCode": "O33",
"isSold": true,
"createdAt": "2025-08-11T16:13:10.363Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/tickets?page=10&limit=24",
"first": "/api/v1/tickets?page=1&limit=24",
"last": "/api/v1/tickets?page=13&limit=24",
"next": "/api/v1/tickets?page=11&limit=24",
"prev": "/api/v1/tickets?page=9&limit=24"
}
}