tickets
tickets
Page 2 of 13.
Overview
- Jun23
World Osinski Summit
12:18 PM · Chico Concert Hall
- Apr20
Grand McGlynn Summit
9:03 PM · Mullerstad Convention Center
- Feb4
National Anderson Exhibition
7:14 AM · Waco Stadium
- Sep7
World Pollich Concert
9:19 AM · Walshview Pavilion
- Jul14
World O'Kon Gala
9:48 AM · South Mohammadside Pavilion
- Dec31
International Quitzon Exhibition
12:46 AM · North Marquesboro Stadium
- Aug4
National Heathcote-Nicolas Gala
7:49 AM · North Emmanuelle Auditorium
- Mar6
The Kohler Finals
12:04 PM · O'Harashire Theater
- Apr24
The DuBuque Show
5:40 AM · West Shawnafield Arena
- Dec8
National Stark Championship
2:34 AM · East Kara Auditorium
- Jan6
National Murazik Championship
4:11 AM · Mannburgh Amphitheater
- Nov19
Classic Sporer-Parker Show
2:54 AM · South Amarichester Theater
- Dec15
World Muller Championship
6:58 AM · Bahringerboro Amphitheater
- Apr9
Annual Jast Finals
8:52 AM · Wolffton Amphitheater
- Jan3
World Raynor-Bartell Summit
6:35 AM · West Filomenaville Amphitheater
- May29
International Harvey Open
5:54 PM · Lompoc Amphitheater
- Aug16
Grand Grady Gala
3:20 AM · Corwinland Theater
- Sep8
Annual Stokes Concert
1:39 PM · Haagmouth Convention Center
- Sep16
World Bergnaum Show
11:05 PM · Torrance Auditorium
- Jul1
Annual Williamson Gala
10:06 PM · Port Elaina Stadium
- Apr3
World Crona Championship
11:48 AM · Antoinetteview Arena
- May3
Ultimate Tremblay Summit
12:02 PM · Rosalindastead Stadium
- Jul11
Annual Ankunding Exhibition
4:48 AM · Yadirachester Amphitheater
- Jul9
Ultimate Kunde-Pfeffer Show
5:18 AM · Wunschland Auditorium
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": 25,
"eventName": "World Osinski Summit",
"venue": "Chico Concert Hall",
"eventAt": "2025-06-23T12:18:42.012Z",
"type": "reserved",
"price": 210.13,
"currency": "MXN",
"sectionCode": "D2",
"seatCode": "A32",
"isSold": true,
"createdAt": "2025-01-13T12:18:42.012Z"
},
{
"id": 26,
"eventName": "Grand McGlynn Summit",
"venue": "Mullerstad Convention Center",
"eventAt": "2026-04-20T21:03:31.309Z",
"type": "reserved",
"price": 280.95,
"currency": "MXN",
"sectionCode": "FLOOR",
"seatCode": "M47",
"isSold": false,
"createdAt": "2026-01-22T21:03:31.309Z"
},
{
"id": 27,
"eventName": "National Anderson Exhibition",
"venue": "Waco Stadium",
"eventAt": "2027-02-04T07:14:51.296Z",
"type": "general",
"price": 288.59,
"currency": "AUD",
"sectionCode": "C1",
"seatCode": null,
"isSold": false,
"createdAt": "2026-09-02T07:14:51.296Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/tickets?page=2&limit=24",
"first": "/api/v1/tickets?page=1&limit=24",
"last": "/api/v1/tickets?page=13&limit=24",
"next": "/api/v1/tickets?page=3&limit=24",
"prev": "/api/v1/tickets?page=1&limit=24"
}
}