Mar
10
Tue
Classic Herzog Finals
11:13 PM
Herzogfield Amphitheater
From AUD 742.16
Overview
tickets / #125
11:13 PM
Herzogfield Amphitheater
From AUD 742.16
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/125" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/125" ); 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/125"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/125"
)
ticket = res.json() Response
{
"id": 125,
"eventName": "Classic Herzog Finals",
"venue": "Herzogfield Amphitheater",
"eventAt": "2026-03-10T23:13:03.376Z",
"type": "balcony",
"price": 742.16,
"currency": "AUD",
"sectionCode": "VIP",
"seatCode": "D14",
"isSold": false,
"createdAt": "2025-10-20T23:13:03.376Z"
}