tickets
tickets
Page 12 of 13.
Overview
- Mar20
International Treutel Gala
11:07 AM · Stiedemannville Amphitheater
- Nov13
Annual Gibson Finals
12:04 PM · Austin Arena
- Jul18
International Senger Show
8:52 PM · Sporershire Convention Center
- Oct16
Annual O'Connell Championship
4:54 AM · Keltonberg Amphitheater
- Mar31
Annual Casper-Bins Gala
9:58 PM · Josephineside Pavilion
- Nov7
International Koelpin Tour
8:57 PM · North Elvie Amphitheater
- Feb19
The Feest Gala
5:07 AM · East Chesterfurt Auditorium
- Feb10
World Gibson Finals
6:00 PM · North Manuelabury Concert Hall
- Oct11
World Grant Finals
6:58 AM · Toyland Auditorium
- Dec10
Annual Beer Finals
6:56 AM · New Vernie Pavilion
- Jun12
Classic Funk Show
3:56 PM · Port Colleen Stadium
- Mar22
The Streich Festival
7:32 AM · Port Deon Auditorium
- Apr21
World Weissnat Concert
7:06 AM · Port Sydnee Theater
- Apr10
National Greenholt Festival
11:48 AM · New Kendrick Stadium
- Jan11
Classic Parker Gala
1:15 AM · Wisokyberg Stadium
- Jul8
Classic Haley Festival
7:57 PM · West Lacey Pavilion
- Jan1
Classic Wiza Exhibition
8:57 PM · Lake Willischester Arena
- Apr2
World Wisoky Gala
6:56 AM · Port Keyonton Amphitheater
- Oct9
International Walsh Concert
3:13 AM · Ameliecester Convention Center
- Jan12
International Kohler Summit
2:46 PM · Port Charlotte Theater
- Feb3
Annual Abbott Exhibition
11:16 AM · Gaithersburg Auditorium
- Nov15
Annual Bahringer Championship
12:34 AM · South Kirk Stadium
- Oct13
Ultimate Hoppe Gala
11:55 PM · Canton Auditorium
- May19
Classic Turner Concert
2:46 PM · Lake Austyn Stadium
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": 265,
"eventName": "International Treutel Gala",
"venue": "Stiedemannville Amphitheater",
"eventAt": "2027-03-20T11:07:26.667Z",
"type": "standing",
"price": 267.61,
"currency": "JPY",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": false,
"createdAt": "2027-03-12T11:07:26.667Z"
},
{
"id": 266,
"eventName": "Annual Gibson Finals",
"venue": "Austin Arena",
"eventAt": "2026-11-13T12:04:09.984Z",
"type": "general",
"price": 56.4,
"currency": "CAD",
"sectionCode": "B1",
"seatCode": null,
"isSold": false,
"createdAt": "2026-07-23T12:04:09.984Z"
},
{
"id": 267,
"eventName": "International Senger Show",
"venue": "Sporershire Convention Center",
"eventAt": "2025-07-18T20:52:53.351Z",
"type": "balcony",
"price": 683.9,
"currency": "AUD",
"sectionCode": "C1",
"seatCode": "Q34",
"isSold": true,
"createdAt": "2025-06-06T20:52:53.351Z"
}
],
"meta": {
"page": 12,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/tickets?page=12&limit=24",
"first": "/api/v1/tickets?page=1&limit=24",
"last": "/api/v1/tickets?page=13&limit=24",
"next": "/api/v1/tickets?page=13&limit=24",
"prev": "/api/v1/tickets?page=11&limit=24"
}
}