tickets
tickets
Page 5 of 13.
Overview
- Nov11
Grand Konopelski Festival
9:34 AM · North Queenie Auditorium
- Jan30
International Beahan Show
3:25 AM · Theresaville Pavilion
- Aug18
Annual Goodwin Show
9:34 AM · Dawnhaven Pavilion
- Nov18
Annual Batz Gala
12:34 PM · South Whittier Theater
- Nov8
Annual Bartoletti Open
12:15 AM · Rodrickborough Stadium
- Sep7
World Kilback Gala
12:29 PM · Port Anthony Stadium
- Jan26
Classic Anderson Show
4:55 AM · Hilllworth Pavilion
- Jun23
The Runolfsdottir Exhibition
2:59 PM · Fort Floshire Arena
- Feb12
Grand Swaniawski Festival
7:03 AM · New Braunfels Auditorium
- Nov2
Grand Breitenberg Show
4:07 PM · Shawnee Convention Center
- Sep18
The Bednar Gala
11:49 PM · Arvada Pavilion
- Aug14
The Douglas Tour
5:26 AM · Kubtown Pavilion
- Feb15
The VonRueden Concert
3:08 AM · Fort Jamisonview Auditorium
- May18
Classic Price Tour
10:08 PM · Emeliestead Amphitheater
- May17
Classic Ortiz Festival
6:01 AM · Hodkiewiczstead Amphitheater
- Nov8
The Wiza Show
7:27 PM · New Phyllis Arena
- Jan17
Ultimate Marvin Festival
2:50 AM · Lake Garrisoncester Arena
- Nov18
Ultimate Ankunding Tour
5:14 AM · South Karianneview Concert Hall
- Oct30
Annual Tromp Gala
1:35 AM · Lawrence Convention Center
- Mar13
Grand O'Kon-Wilderman Gala
12:24 AM · Roobtown Pavilion
- Oct5
National O'Connell Tour
7:42 AM · New Paoloburgh Stadium
- Jul6
International Watsica Exhibition
5:24 PM · Lulaburgh Stadium
- Sep5
The Legros Show
9:05 PM · Cristinaboro Auditorium
- Jan21
Ultimate Predovic Festival
2:39 PM · Kuhnburgh Theater
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": 97,
"eventName": "Grand Konopelski Festival",
"venue": "North Queenie Auditorium",
"eventAt": "2026-11-11T09:34:16.252Z",
"type": "general",
"price": 680.68,
"currency": "GBP",
"sectionCode": "A2",
"seatCode": null,
"isSold": true,
"createdAt": "2026-06-29T09:34:16.252Z"
},
{
"id": 98,
"eventName": "International Beahan Show",
"venue": "Theresaville Pavilion",
"eventAt": "2027-01-30T03:25:02.017Z",
"type": "standing",
"price": 269.53,
"currency": "MXN",
"sectionCode": "B1",
"seatCode": null,
"isSold": true,
"createdAt": "2026-10-11T03:25:02.017Z"
},
{
"id": 99,
"eventName": "Annual Goodwin Show",
"venue": "Dawnhaven Pavilion",
"eventAt": "2025-08-18T09:34:56.518Z",
"type": "general",
"price": 12.05,
"currency": "EUR",
"sectionCode": "GA",
"seatCode": null,
"isSold": true,
"createdAt": "2025-05-12T09:34:56.518Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/tickets?page=5&limit=24",
"first": "/api/v1/tickets?page=1&limit=24",
"last": "/api/v1/tickets?page=13&limit=24",
"next": "/api/v1/tickets?page=6&limit=24",
"prev": "/api/v1/tickets?page=4&limit=24"
}
}