Mar
6
Sat
National Boyle Summit
12:41 AM
Adellborough Convention Center
From CAD615.36
tickets / #129
12:41 AM
Adellborough Convention Center
From CAD615.36
curl -sS \
"https://example-data.com/api/v1/tickets/129" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/129"
);
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/129"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/129"
)
ticket = res.json() {
"id": 129,
"eventName": "National Boyle Summit",
"venue": "Adellborough Convention Center",
"eventAt": "2027-03-06T00:41:10.927Z",
"type": "balcony",
"price": 615.36,
"currency": "CAD",
"sectionCode": "D1",
"seatCode": "C23",
"isSold": true,
"createdAt": "2026-11-16T00:41:10.927Z"
}