Nov
4
Wed
National Wyman Show
9:30 AM
Pricecester Concert Hall
From CAD835.34
tickets / #121
9:30 AM
Pricecester Concert Hall
From CAD835.34
curl -sS \
"https://example-data.com/api/v1/tickets/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/121"
);
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/121"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/121"
)
ticket = res.json() {
"id": 121,
"eventName": "National Wyman Show",
"venue": "Pricecester Concert Hall",
"eventAt": "2026-11-04T09:30:49.001Z",
"type": "general",
"price": 835.34,
"currency": "CAD",
"sectionCode": "A1",
"seatCode": null,
"isSold": true,
"createdAt": "2026-06-22T09:30:49.001Z"
}