Nov
26
Wed
Grand White Exhibition
4:31 PM
Brendenchester Arena
From CAD595.75
tickets / #2
4:31 PM
Brendenchester Arena
From CAD595.75
curl -sS \
"https://example-data.com/api/v1/tickets/2" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/2"
);
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/2"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/2"
)
ticket = res.json() {
"id": 2,
"eventName": "Grand White Exhibition",
"venue": "Brendenchester Arena",
"eventAt": "2025-11-26T16:31:06.526Z",
"type": "vip",
"price": 595.75,
"currency": "CAD",
"sectionCode": "D2",
"seatCode": "J18",
"isSold": true,
"createdAt": "2025-06-26T16:31:06.526Z"
}