Jul
4
Sat
World Kohler Summit
9:58 AM
East Alessia Theater
From AUD838.09
tickets / #173
9:58 AM
East Alessia Theater
From AUD838.09
curl -sS \
"https://example-data.com/api/v1/tickets/173" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/173"
);
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/173"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/173"
)
ticket = res.json() {
"id": 173,
"eventName": "World Kohler Summit",
"venue": "East Alessia Theater",
"eventAt": "2026-07-04T09:58:04.014Z",
"type": "balcony",
"price": 838.09,
"currency": "AUD",
"sectionCode": "A2",
"seatCode": "E1",
"isSold": false,
"createdAt": "2026-04-28T09:58:04.014Z"
}