tickets
tickets
Page 3 of 13.
Overview
- Aug11
Classic Fritsch Open
1:17 PM · Ceres Arena
- Jan22
Annual Erdman Festival
8:15 AM · New Nicktown Amphitheater
- May27
National Senger-Kilback Exhibition
10:46 PM · Fort Iva Stadium
- Aug30
National Hansen Tour
10:59 AM · High Point Auditorium
- Jul22
National Nikolaus Summit
8:02 PM · East Katarina Stadium
- Jul19
World Terry Concert
6:26 AM · New Nicola Amphitheater
- Dec28
Grand Zemlak Festival
10:47 PM · Yundtcester Stadium
- Oct27
Annual Block Gala
12:21 PM · Port Odell Concert Hall
- May5
Classic Carroll Gala
5:53 PM · Hickletown Amphitheater
- Sep20
Ultimate Donnelly Open
5:17 AM · Port Gennaroshire Theater
- Oct21
National Bradtke Exhibition
4:59 PM · Thielhaven Theater
- Apr7
International Schultz Summit
12:41 PM · Middletown Convention Center
- Nov16
International Anderson Tour
11:55 AM · Fayview Convention Center
- Mar12
Grand Lesch Festival
1:31 PM · Boehmshire Pavilion
- Jul8
International Sauer Championship
3:56 PM · Owenton Arena
- Feb27
Grand Zboncak Championship
9:35 PM · Lake Jillian Convention Center
- Aug11
Annual Carter Concert
11:10 PM · Rutherfordview Auditorium
- Dec5
Classic Jones Tour
6:52 PM · Fremont Amphitheater
- Oct5
Annual Goldner Gala
8:42 AM · Lake Laurianne Pavilion
- Nov7
The Legros Open
1:33 AM · Arlington Auditorium
- Dec17
National Leffler Open
7:29 AM · Fort Nicklaus Arena
- Oct30
The Hayes-Kemmer Tour
11:13 PM · Bergstromport Amphitheater
- Aug12
Grand Hirthe Finals
6:33 PM · Lavinabury Amphitheater
- Nov6
National Kohler Exhibition
5:09 AM · Lake Missourishire 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": 49,
"eventName": "Classic Fritsch Open",
"venue": "Ceres Arena",
"eventAt": "2025-08-11T13:17:58.062Z",
"type": "general",
"price": 347.15,
"currency": "GBP",
"sectionCode": "A1",
"seatCode": null,
"isSold": false,
"createdAt": "2025-06-03T13:17:58.062Z"
},
{
"id": 50,
"eventName": "Annual Erdman Festival",
"venue": "New Nicktown Amphitheater",
"eventAt": "2026-01-22T08:15:27.576Z",
"type": "standing",
"price": 103.8,
"currency": "EUR",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": false,
"createdAt": "2025-12-05T08:15:27.576Z"
},
{
"id": 51,
"eventName": "National Senger-Kilback Exhibition",
"venue": "Fort Iva Stadium",
"eventAt": "2025-05-27T22:46:09.383Z",
"type": "reserved",
"price": 604.29,
"currency": "MXN",
"sectionCode": "VIP",
"seatCode": "T5",
"isSold": true,
"createdAt": "2025-02-16T22:46:09.383Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/tickets?page=3&limit=24",
"first": "/api/v1/tickets?page=1&limit=24",
"last": "/api/v1/tickets?page=13&limit=24",
"next": "/api/v1/tickets?page=4&limit=24",
"prev": "/api/v1/tickets?page=2&limit=24"
}
}