Sep
7
Sun
International Krajcik Festival
12:44 AM
Bobbiestead Convention Center
From CAD 508.40
Overview
tickets / #179
12:44 AM
Bobbiestead Convention Center
From CAD 508.40
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/179" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/179" ); const ticket = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tickets.d.ts https://example-data.com/types/tickets.d.ts
import type { Ticket } from "./types/tickets";
const res = await fetch(
"https://example-data.com/api/v1/tickets/179"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/179"
)
ticket = res.json() Response
{
"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"
}