tickets
tickets
Page 3 of 10.
- Classic Fritsch Open · 8/11/2025
- Annual Erdman Festival · 1/22/2026
- National Senger-Kilback Exhibition · 5/27/2025
- National Hansen Tour · 8/30/2025
- National Nikolaus Summit · 7/22/2025
- World Terry Concert · 7/19/2025
- Grand Zemlak Festival · 12/28/2026
- Annual Block Gala · 10/27/2025
- Classic Carroll Gala · 5/5/2027
- Ultimate Donnelly Open · 9/20/2026
- National Bradtke Exhibition · 10/21/2026
- International Schultz Summit · 4/7/2027
- International Anderson Tour · 11/16/2025
- Grand Lesch Festival · 3/12/2027
- International Sauer Championship · 7/8/2025
- Grand Zboncak Championship · 2/27/2027
- Annual Carter Concert · 8/11/2025
- Classic Jones Tour · 12/5/2026
- Annual Goldner Gala · 10/5/2026
- The Legros Open · 11/7/2025
- National Leffler Open · 12/17/2025
- The Hayes-Kemmer Tour · 10/30/2026
- Grand Hirthe Finals · 8/12/2025
- National Kohler Exhibition · 11/6/2026
- 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
Classic Fritsch Open
1:17 PM
Ceres Arena
From GBP347.15
Annual Erdman Festival
8:15 AM
New Nicktown Amphitheater
From EUR103.80
National Senger-Kilback Exhibition
10:46 PM
Fort Iva Stadium
From MXN604.29
National Hansen Tour
10:59 AM
High Point Auditorium
From CAD696.39
National Nikolaus Summit
8:02 PM
East Katarina Stadium
From EUR912.57
World Terry Concert
6:26 AM
New Nicola Amphitheater
From AUD501.78
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/tickets?limit=25"const res = await fetch(
"https://example-data.com/api/v1/tickets?limit=25"
);
const { data, meta } = await res.json();import type { Ticket, ListEnvelope } from "https://example-data.com/types/tickets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tickets?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Ticket>;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets",
params={"limit": 25},
)
data = res.json() {
"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",
"next": "/api/v1/tickets?page=4",
"prev": "/api/v1/tickets?page=2"
}
}