tickets
tickets
Page 4 of 13.
Overview
- Dec23
Annual Bednar Gala
1:21 PM · Wuckertville Convention Center
- Mar23
Grand Rau Gala
7:29 AM · Ednaland Auditorium
- Apr4
International Russel Finals
8:56 AM · Council Bluffs Stadium
- Jun11
Ultimate Satterfield Finals
11:23 PM · Conroyberg Auditorium
- Jun18
Classic Morar Festival
5:04 AM · Lake Jane Arena
- Mar15
International Balistreri Tour
4:27 PM · Amandaville Stadium
- Dec12
Classic Connelly Finals
3:40 AM · Fort Desireehaven Stadium
- Aug30
World Bernier Finals
12:19 PM · New Lucasview Convention Center
- Aug13
National Emmerich Gala
10:48 PM · Lindfort Convention Center
- Jan28
Annual Abshire Concert
4:22 PM · South Valley Convention Center
- Jan1
International Miller Festival
9:09 AM · Sunrise Theater
- Aug12
Ultimate Haag Gala
6:35 PM · New Walkerberg Theater
- Nov15
International Rutherford-Grimes Open
3:20 AM · Franeyhaven Concert Hall
- Sep28
World Shields Open
2:36 PM · Brandoside Amphitheater
- Jun3
Classic Powlowski Show
11:03 AM · North Winfield Convention Center
- Aug16
Annual Will Finals
2:55 PM · Lubbock Auditorium
- Apr5
Annual D'Amore Finals
9:51 PM · Port Judefurt Theater
- Oct13
National Luettgen Finals
4:32 AM · Orvalshire Stadium
- Jul11
Ultimate Ward Tour
9:34 AM · Bossier City Theater
- Oct10
National Gleichner-Cruickshank Concert
6:59 PM · Lynchburg Concert Hall
- Aug17
Grand Feest Summit
10:14 AM · South Vivianneshire Pavilion
- Dec25
National Rowe Show
8:55 PM · East Carminefort Theater
- Oct1
Classic Aufderhar Concert
3:38 AM · Josephburgh Pavilion
- Aug26
International Lynch Championship
7:06 AM · Franeyville 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": 73,
"eventName": "Annual Bednar Gala",
"venue": "Wuckertville Convention Center",
"eventAt": "2026-12-23T13:21:01.760Z",
"type": "standing",
"price": 173.94,
"currency": "MXN",
"sectionCode": "VIP",
"seatCode": null,
"isSold": false,
"createdAt": "2026-11-07T13:21:01.760Z"
},
{
"id": 74,
"eventName": "Grand Rau Gala",
"venue": "Ednaland Auditorium",
"eventAt": "2026-03-23T07:29:01.357Z",
"type": "reserved",
"price": 231.34,
"currency": "CAD",
"sectionCode": "C2",
"seatCode": "N48",
"isSold": true,
"createdAt": "2025-12-26T07:29:01.357Z"
},
{
"id": 75,
"eventName": "International Russel Finals",
"venue": "Council Bluffs Stadium",
"eventAt": "2027-04-04T08:56:27.504Z",
"type": "vip",
"price": 223.26,
"currency": "GBP",
"sectionCode": "D2",
"seatCode": "G11",
"isSold": false,
"createdAt": "2027-01-12T08:56:27.504Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/tickets?page=4&limit=24",
"first": "/api/v1/tickets?page=1&limit=24",
"last": "/api/v1/tickets?page=13&limit=24",
"next": "/api/v1/tickets?page=5&limit=24",
"prev": "/api/v1/tickets?page=3&limit=24"
}
}