Sep
7
Sun
International Krajcik Festival
12:44 AM
Bobbiestead Convention Center
From CAD508.40
tickets / #179
12:44 AM
Bobbiestead Convention Center
From CAD508.40
curl -sS \
"https://example-data.com/api/v1/tickets/179" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/179"
);
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/179"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/179"
)
ticket = res.json() {
"id": 179,
"eventName": "International Krajcik Festival",
"venue": "Bobbiestead Convention Center",
"eventAt": "2025-09-07T00:44:09.104Z",
"type": "standing",
"price": 508.4,
"currency": "CAD",
"sectionCode": "A1",
"seatCode": null,
"isSold": true,
"createdAt": "2025-06-05T00:44:09.104Z"
}