Jan
12
Tue
Classic Von Gala
12:39 AM
Breitenbergfort Auditorium
From CAD23.70
tickets / #145
12:39 AM
Breitenbergfort Auditorium
From CAD23.70
curl -sS \
"https://example-data.com/api/v1/tickets/145" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/145"
);
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/145"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/145"
)
ticket = res.json() {
"id": 145,
"eventName": "Classic Von Gala",
"venue": "Breitenbergfort Auditorium",
"eventAt": "2027-01-12T00:39:12.401Z",
"type": "reserved",
"price": 23.7,
"currency": "CAD",
"sectionCode": "B2",
"seatCode": "I46",
"isSold": true,
"createdAt": "2026-10-10T00:39:12.401Z"
}