tickets
tickets
Page 8 of 13.
Overview
- May22
National Bauch Festival
8:09 AM · Fort Bennett Pavilion
- May15
National Macejkovic Open
7:10 AM · West Jordanview Stadium
- Jan23
Ultimate Russel Concert
8:28 PM · Thompsonport Arena
- Sep29
Ultimate Heller Festival
9:58 PM · North Dorcas Pavilion
- Jul4
World Kohler Summit
9:58 AM · East Alessia Theater
- Feb9
Annual Bogisich Open
12:52 AM · New Margiecester Auditorium
- Jul22
World Tremblay Festival
5:38 AM · Vitacester Concert Hall
- Oct4
Ultimate Von Show
4:01 PM · West Dulce Amphitheater
- Jul1
Ultimate Homenick Festival
6:31 AM · Palm Desert Amphitheater
- Mar9
Ultimate Grant Championship
11:13 AM · Marksstad Auditorium
- Sep7
International Krajcik Festival
12:44 AM · Bobbiestead Convention Center
- Feb20
Grand Cartwright Festival
8:26 PM · Evansville Concert Hall
- Jul7
Ultimate Osinski Summit
10:18 PM · Lake Arastad Auditorium
- Mar20
Grand Huels Open
10:41 PM · West Murray Pavilion
- Aug21
The Rempel-Stokes Finals
8:18 PM · New Lester Auditorium
- Jul12
Classic O'Reilly Festival
3:51 PM · New Wendelltown Pavilion
- Jan18
Annual Donnelly Concert
6:21 PM · Merrittland Pavilion
- Apr27
The Feest Open
12:03 PM · Lubowitzhaven Theater
- Jan28
Annual McKenzie Festival
2:13 PM · Lake Laurence Auditorium
- Jun12
World Weber Concert
7:16 AM · Schmidtburgh Stadium
- Jun20
World Rippin Gala
9:16 PM · West Delphacester Stadium
- Mar18
National Hayes Gala
4:12 AM · West Cameron Auditorium
- May10
Ultimate Smith Festival
6:27 PM · Orange Auditorium
- Dec14
Grand Kris Open
3:06 AM · West Janborough Convention Center
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": 169,
"eventName": "National Bauch Festival",
"venue": "Fort Bennett Pavilion",
"eventAt": "2026-05-22T08:09:51.631Z",
"type": "vip",
"price": 553.09,
"currency": "EUR",
"sectionCode": "FLOOR",
"seatCode": "U24",
"isSold": true,
"createdAt": "2026-03-21T08:09:51.631Z"
},
{
"id": 170,
"eventName": "National Macejkovic Open",
"venue": "West Jordanview Stadium",
"eventAt": "2026-05-15T07:10:13.802Z",
"type": "general",
"price": 810.16,
"currency": "CAD",
"sectionCode": "C1",
"seatCode": null,
"isSold": false,
"createdAt": "2026-02-10T07:10:13.802Z"
},
{
"id": 171,
"eventName": "Ultimate Russel Concert",
"venue": "Thompsonport Arena",
"eventAt": "2027-01-23T20:28:57.526Z",
"type": "reserved",
"price": 186.71,
"currency": "CAD",
"sectionCode": "C1",
"seatCode": "S36",
"isSold": false,
"createdAt": "2026-12-01T20:28:57.526Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/tickets?page=8&limit=24",
"first": "/api/v1/tickets?page=1&limit=24",
"last": "/api/v1/tickets?page=13&limit=24",
"next": "/api/v1/tickets?page=9&limit=24",
"prev": "/api/v1/tickets?page=7&limit=24"
}
}