tickets
tickets
Browse 300 tickets records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- Ultimate Zulauf Championship · 5/2/2027
- Grand White Exhibition · 11/26/2025
- Grand Hansen Exhibition · 8/25/2026
- The Lynch Show · 5/25/2026
- Annual Hartmann Open · 10/20/2026
- Ultimate Moen Summit · 1/31/2027
- Annual Schmeler Show · 2/17/2026
- National Kris Finals · 9/8/2025
- National Hessel Finals · 1/5/2027
- Ultimate Stroman Exhibition · 4/2/2027
- International Terry Tour · 8/27/2026
- Ultimate Schneider Championship · 8/18/2025
- Grand Kirlin Gala · 9/15/2026
- National Vandervort Show · 4/18/2027
- Classic Wyman Finals · 2/18/2026
- World Schaefer Concert · 2/19/2027
- International Mayert Championship · 6/12/2025
- National Powlowski Concert · 6/22/2025
- Grand Senger Show · 2/6/2027
- Ultimate Hermann Exhibition · 12/6/2025
- International Nienow Concert · 1/2/2026
- Annual Steuber Festival · 8/17/2025
- Grand Ward-Lemke Show · 7/28/2025
- The Bradtke Show · 5/24/2026
- May2
Ultimate Zulauf Championship
9:27 PM · Daly City Convention Center
- Nov26
Grand White Exhibition
4:31 PM · Brendenchester Arena
- Aug25
Grand Hansen Exhibition
4:30 AM · New Arno Amphitheater
- May25
The Lynch Show
9:08 AM · Yazminboro Amphitheater
- Oct20
Annual Hartmann Open
3:24 AM · Janesville Arena
- Jan31
Ultimate Moen Summit
8:34 PM · Haagfort Stadium
- Feb17
Annual Schmeler Show
7:09 AM · Burnsville Amphitheater
- Sep8
National Kris Finals
10:32 PM · Pacochaland Convention Center
- Jan5
National Hessel Finals
9:30 AM · Pollichview Stadium
- Apr2
Ultimate Stroman Exhibition
10:01 AM · O'Reillyton Concert Hall
- Aug27
International Terry Tour
6:29 AM · Lake Kyle Arena
- Aug18
Ultimate Schneider Championship
10:03 AM · Port Megane Stadium
- Sep15
Grand Kirlin Gala
7:07 PM · Ocieside Amphitheater
- Apr18
National Vandervort Show
8:31 AM · Fort Presley Convention Center
- Feb18
Classic Wyman Finals
3:01 AM · Harveycester Convention Center
- Feb19
World Schaefer Concert
8:39 PM · Bradenton Amphitheater
- Jun12
International Mayert Championship
1:42 PM · Elyria Theater
- Jun22
National Powlowski Concert
9:05 PM · Fort Titoworth Concert Hall
- Feb6
Grand Senger Show
10:33 PM · West Thomasstead Stadium
- Dec6
Ultimate Hermann Exhibition
8:26 PM · Lake Alphonso Convention Center
- Jan2
International Nienow Concert
6:08 AM · Pico Rivera Concert Hall
- Aug17
Annual Steuber Festival
5:00 AM · San Francisco Convention Center
- Jul28
Grand Ward-Lemke Show
5:18 PM · Brakusville Stadium
- May24
The Bradtke Show
4:37 PM · Coralieport Arena
Ultimate Zulauf Championship
9:27 PM
Daly City Convention Center
From JPY626.11
Grand White Exhibition
4:31 PM
Brendenchester Arena
From CAD595.75
Grand Hansen Exhibition
4:30 AM
New Arno Amphitheater
From GBP933.48
The Lynch Show
9:08 AM
Yazminboro Amphitheater
From USD222.22
Annual Hartmann Open
3:24 AM
Janesville Arena
From JPY42.78
Ultimate Moen Summit
8:34 PM
Haagfort Stadium
From AUD984.67
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/tickets?limit=25"const res = await fetch(
"https://example-data.com/api/v1/tickets?limit=25"
);
const { data, meta } = await res.json();import type { Ticket, ListEnvelope } from "https://example-data.com/types/tickets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tickets?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Ticket>;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 1,
"eventName": "Ultimate Zulauf Championship",
"venue": "Daly City Convention Center",
"eventAt": "2027-05-02T21:27:11.496Z",
"type": "standing",
"price": 626.11,
"currency": "JPY",
"sectionCode": "GA",
"seatCode": null,
"isSold": true,
"createdAt": "2027-04-07T21:27:11.496Z"
},
{
"id": 2,
"eventName": "Grand White Exhibition",
"venue": "Brendenchester Arena",
"eventAt": "2025-11-26T16:31:06.526Z",
"type": "vip",
"price": 595.75,
"currency": "CAD",
"sectionCode": "D2",
"seatCode": "J18",
"isSold": true,
"createdAt": "2025-06-26T16:31:06.526Z"
},
{
"id": 3,
"eventName": "Grand Hansen Exhibition",
"venue": "New Arno Amphitheater",
"eventAt": "2026-08-25T04:30:05.972Z",
"type": "standing",
"price": 933.48,
"currency": "GBP",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": true,
"createdAt": "2026-06-04T04:30:05.972Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 300,
"totalPages": 12
},
"links": {
"self": "/api/v1/tickets?page=1",
"first": "/api/v1/tickets?page=1",
"last": "/api/v1/tickets?page=12",
"next": "/api/v1/tickets?page=2",
"prev": null
}
}