Feb
3
Tue
World Bartoletti Finals
6:57 PM
Effieshire Auditorium
From CAD37.89
tickets / #206
6:57 PM
Effieshire Auditorium
From CAD37.89
curl -sS \
"https://example-data.com/api/v1/tickets/206" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/206"
);
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/206"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/206"
)
ticket = res.json() {
"id": 206,
"eventName": "World Bartoletti Finals",
"venue": "Effieshire Auditorium",
"eventAt": "2026-02-03T18:57:01.525Z",
"type": "reserved",
"price": 37.89,
"currency": "CAD",
"sectionCode": "B1",
"seatCode": "R31",
"isSold": true,
"createdAt": "2026-01-11T18:57:01.525Z"
}