Jun
11
Thu
Ultimate Satterfield Finals
11:23 PM
Conroyberg Auditorium
From AUD264.35
tickets / #76
11:23 PM
Conroyberg Auditorium
From AUD264.35
curl -sS \
"https://example-data.com/api/v1/tickets/76" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/76"
);
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/76"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/76"
)
ticket = res.json() {
"id": 76,
"eventName": "Ultimate Satterfield Finals",
"venue": "Conroyberg Auditorium",
"eventAt": "2026-06-11T23:23:44.588Z",
"type": "vip",
"price": 264.35,
"currency": "AUD",
"sectionCode": "A2",
"seatCode": "O42",
"isSold": false,
"createdAt": "2026-01-14T23:23:44.588Z"
}