Sep
7
Mon
World Kilback Gala
12:29 PM
Port Anthony Stadium
From CAD938.26
tickets / #102
12:29 PM
Port Anthony Stadium
From CAD938.26
curl -sS \
"https://example-data.com/api/v1/tickets/102" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/102"
);
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/102"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/102"
)
ticket = res.json() {
"id": 102,
"eventName": "World Kilback Gala",
"venue": "Port Anthony Stadium",
"eventAt": "2026-09-07T12:29:58.493Z",
"type": "reserved",
"price": 938.26,
"currency": "CAD",
"sectionCode": "D1",
"seatCode": "C4",
"isSold": false,
"createdAt": "2026-04-16T12:29:58.493Z"
}