Mar
29
Mon
Classic Nitzsche Summit
3:15 AM
West Norval Stadium
From GBP 332.76
Overview
tickets / #226
3:15 AM
West Norval Stadium
From GBP 332.76
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/226" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/226" ); 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/226"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/226"
)
ticket = res.json() Response
{
"id": 226,
"eventName": "Classic Nitzsche Summit",
"venue": "West Norval Stadium",
"eventAt": "2027-03-29T03:15:11.175Z",
"type": "standing",
"price": 332.76,
"currency": "GBP",
"sectionCode": "B2",
"seatCode": null,
"isSold": false,
"createdAt": "2026-10-01T03:15:11.175Z"
}