Mar
14
Sat
World Beer Concert
12:48 PM
Port Cathyboro Stadium
From CAD398.28
tickets / #158
12:48 PM
Port Cathyboro Stadium
From CAD398.28
curl -sS \
"https://example-data.com/api/v1/tickets/158" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/158"
);
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/158"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/158"
)
ticket = res.json() {
"id": 158,
"eventName": "World Beer Concert",
"venue": "Port Cathyboro Stadium",
"eventAt": "2026-03-14T12:48:59.681Z",
"type": "vip",
"price": 398.28,
"currency": "CAD",
"sectionCode": "D2",
"seatCode": "Y27",
"isSold": false,
"createdAt": "2025-11-07T12:48:59.681Z"
}