Nov
2
Mon
Grand Breitenberg Show
4:07 PM
Shawnee Convention Center
From AUD708.28
tickets / #106
4:07 PM
Shawnee Convention Center
From AUD708.28
curl -sS \
"https://example-data.com/api/v1/tickets/106" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/106"
);
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/106"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/106"
)
ticket = res.json() {
"id": 106,
"eventName": "Grand Breitenberg Show",
"venue": "Shawnee Convention Center",
"eventAt": "2026-11-02T16:07:51.387Z",
"type": "balcony",
"price": 708.28,
"currency": "AUD",
"sectionCode": "A2",
"seatCode": "W22",
"isSold": true,
"createdAt": "2026-05-15T16:07:51.387Z"
}