Nov
6
Fri
National Kohler Exhibition
5:09 AM
Lake Missourishire Arena
From USD969.04
tickets / #72
5:09 AM
Lake Missourishire Arena
From USD969.04
curl -sS \
"https://example-data.com/api/v1/tickets/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/72"
);
const ticket = await res.json();import type { Ticket } from "https://example-data.com/types/tickets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tickets/72"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/72"
)
ticket = res.json() {
"id": 72,
"eventName": "National Kohler Exhibition",
"venue": "Lake Missourishire Arena",
"eventAt": "2026-11-06T05:09:16.216Z",
"type": "reserved",
"price": 969.04,
"currency": "USD",
"sectionCode": "A2",
"seatCode": "T26",
"isSold": false,
"createdAt": "2026-06-12T05:09:16.216Z"
}