Oct
10
Sat
National Gleichner-Cruickshank Concert
6:59 PM
Lynchburg Concert Hall
From AUD 900.92
Overview
tickets / #92
6:59 PM
Lynchburg Concert Hall
From AUD 900.92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/92" ); 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/92"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/92"
)
ticket = res.json() Response
{
"id": 92,
"eventName": "National Gleichner-Cruickshank Concert",
"venue": "Lynchburg Concert Hall",
"eventAt": "2026-10-10T18:59:38.332Z",
"type": "general",
"price": 900.92,
"currency": "AUD",
"sectionCode": "A2",
"seatCode": null,
"isSold": true,
"createdAt": "2026-09-26T18:59:38.332Z"
}