Nov
6
Fri
National Kohler Exhibition
5:09 AM
Lake Missourishire Arena
From USD 969.04
Overview
tickets / #72
5:09 AM
Lake Missourishire Arena
From USD 969.04
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/72" ); const ticket = 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 } from "./types/tickets";
const res = await fetch(
"https://example-data.com/api/v1/tickets/72"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/72"
)
ticket = res.json() Response
{
"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"
}