Mar
10
Tue
Classic Herzog Finals
11:13 PM
Herzogfield Amphitheater
From AUD742.16
tickets / #125
11:13 PM
Herzogfield Amphitheater
From AUD742.16
curl -sS \
"https://example-data.com/api/v1/tickets/125" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/125"
);
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/125"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/125"
)
ticket = res.json() {
"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"
}