Sep
28
Sun
World Shields Open
2:36 PM
Brandoside Amphitheater
From CAD89.58
tickets / #86
2:36 PM
Brandoside Amphitheater
From CAD89.58
curl -sS \
"https://example-data.com/api/v1/tickets/86" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/86"
);
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/86"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/86"
)
ticket = res.json() {
"id": 86,
"eventName": "World Shields Open",
"venue": "Brandoside Amphitheater",
"eventAt": "2025-09-28T14:36:45.106Z",
"type": "vip",
"price": 89.58,
"currency": "CAD",
"sectionCode": "B2",
"seatCode": "M33",
"isSold": true,
"createdAt": "2025-05-08T14:36:45.106Z"
}