Nov
27
Thu
Annual Erdman Gala
8:38 AM
Pfannerstillshire Stadium
From CAD352.86
tickets / #215
8:38 AM
Pfannerstillshire Stadium
From CAD352.86
curl -sS \
"https://example-data.com/api/v1/tickets/215" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/215"
);
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/215"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/215"
)
ticket = res.json() {
"id": 215,
"eventName": "Annual Erdman Gala",
"venue": "Pfannerstillshire Stadium",
"eventAt": "2025-11-27T08:38:29.941Z",
"type": "reserved",
"price": 352.86,
"currency": "CAD",
"sectionCode": "C2",
"seatCode": "N45",
"isSold": true,
"createdAt": "2025-09-27T08:38:29.941Z"
}