Sep
15
Tue
National Larkin Gala
10:19 PM
Weissnatchester Amphitheater
From CAD882.34
tickets / #216
10:19 PM
Weissnatchester Amphitheater
From CAD882.34
curl -sS \
"https://example-data.com/api/v1/tickets/216" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/216"
);
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/216"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/216"
)
ticket = res.json() {
"id": 216,
"eventName": "National Larkin Gala",
"venue": "Weissnatchester Amphitheater",
"eventAt": "2026-09-15T22:19:06.676Z",
"type": "balcony",
"price": 882.34,
"currency": "CAD",
"sectionCode": "B1",
"seatCode": "D33",
"isSold": false,
"createdAt": "2026-04-30T22:19:06.676Z"
}