tickets
tickets
Page 9 of 13.
Overview
- May1
Classic Rolfson Tour
3:31 AM · Moisesville Arena
- Feb27
International Roob Open
5:59 AM · Erniechester Convention Center
- Oct30
Annual Goyette Championship
11:47 AM · Arlington Amphitheater
- Jun15
International Bernier Championship
10:16 AM · Eduardoborough Auditorium
- Dec14
National Koch Concert
9:39 PM · Placentia Amphitheater
- Feb27
Ultimate Hauck Open
11:22 AM · Anchorage Convention Center
- Nov16
The Witting Summit
1:35 PM · Carolinemouth Concert Hall
- Aug8
Ultimate Runolfsdottir Tour
7:52 AM · South Ignacio Arena
- Nov21
Grand Klocko Summit
10:02 PM · West Aidenburgh Concert Hall
- Sep15
Grand Gleason Exhibition
8:05 AM · Yuba City Concert Hall
- Sep27
International Sanford Tour
11:10 AM · Sipesbury Amphitheater
- Jan22
World Parisian Concert
8:29 AM · Temecula Concert Hall
- Feb6
Classic Prohaska Open
4:32 AM · South Chelsie Theater
- Feb3
World Bartoletti Finals
6:57 PM · Effieshire Auditorium
- Jun27
Ultimate Zemlak Exhibition
7:03 AM · Reyberg Arena
- Jul5
National Bogan Tour
9:08 AM · Andersonburgh Arena
- Dec14
National Herzog Concert
1:21 AM · Jurupa Valley Arena
- Dec18
Grand Jones Championship
7:00 AM · Fort Rhodaboro Concert Hall
- Jan12
Grand Witting Championship
5:25 PM · Fort Pierce Stadium
- Mar2
The Wilkinson Show
11:51 AM · Toyborough Amphitheater
- Mar12
The Luettgen-Hilpert Show
8:48 AM · New Mariane Convention Center
- Sep29
World Gusikowski Finals
5:23 PM · Sterling Heights Convention Center
- Nov27
Annual Erdman Gala
8:38 AM · Pfannerstillshire Stadium
- Sep15
National Larkin Gala
10:19 PM · Weissnatchester Amphitheater
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": 193,
"eventName": "Classic Rolfson Tour",
"venue": "Moisesville Arena",
"eventAt": "2027-05-01T03:31:36.549Z",
"type": "standing",
"price": 932.94,
"currency": "EUR",
"sectionCode": "B1",
"seatCode": null,
"isSold": true,
"createdAt": "2027-02-07T03:31:36.549Z"
},
{
"id": 194,
"eventName": "International Roob Open",
"venue": "Erniechester Convention Center",
"eventAt": "2027-02-27T05:59:10.504Z",
"type": "vip",
"price": 14.2,
"currency": "EUR",
"sectionCode": "C2",
"seatCode": "K21",
"isSold": false,
"createdAt": "2026-10-24T05:59:10.504Z"
},
{
"id": 195,
"eventName": "Annual Goyette Championship",
"venue": "Arlington Amphitheater",
"eventAt": "2026-10-30T11:47:17.887Z",
"type": "balcony",
"price": 507.07,
"currency": "USD",
"sectionCode": "B1",
"seatCode": "P8",
"isSold": true,
"createdAt": "2026-10-16T11:47:17.887Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 300,
"totalPages": 13
},
"links": {
"self": "/api/v1/tickets?page=9&limit=24",
"first": "/api/v1/tickets?page=1&limit=24",
"last": "/api/v1/tickets?page=13&limit=24",
"next": "/api/v1/tickets?page=10&limit=24",
"prev": "/api/v1/tickets?page=8&limit=24"
}
}