Nov
8
Sat
International Kirlin Finals
11:43 AM
Leehaven Amphitheater
From CAD974.89
tickets / #131
11:43 AM
Leehaven Amphitheater
From CAD974.89
curl -sS \
"https://example-data.com/api/v1/tickets/131" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/131"
);
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/131"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/131"
)
ticket = res.json() {
"id": 131,
"eventName": "International Kirlin Finals",
"venue": "Leehaven Amphitheater",
"eventAt": "2025-11-08T11:43:50.848Z",
"type": "general",
"price": 974.89,
"currency": "CAD",
"sectionCode": "B1",
"seatCode": null,
"isSold": false,
"createdAt": "2025-08-10T11:43:50.848Z"
}