Sep
7
Mon
World Kilback Gala
12:29 PM
Port Anthony Stadium
From CAD 938.26
Overview
tickets / #102
12:29 PM
Port Anthony Stadium
From CAD 938.26
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/102" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/102" ); 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/102"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/102"
)
ticket = res.json() Response
{
"id": 102,
"eventName": "World Kilback Gala",
"venue": "Port Anthony Stadium",
"eventAt": "2026-09-07T12:29:58.493Z",
"type": "reserved",
"price": 938.26,
"currency": "CAD",
"sectionCode": "D1",
"seatCode": "C4",
"isSold": false,
"createdAt": "2026-04-16T12:29:58.493Z"
}