Dec
23
Wed
Annual Bednar Gala
1:21 PM
Wuckertville Convention Center
From MXN173.94
tickets / #73
1:21 PM
Wuckertville Convention Center
From MXN173.94
curl -sS \
"https://example-data.com/api/v1/tickets/73" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/73"
);
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/73"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/73"
)
ticket = res.json() {
"id": 73,
"eventName": "Annual Bednar Gala",
"venue": "Wuckertville Convention Center",
"eventAt": "2026-12-23T13:21:01.760Z",
"type": "standing",
"price": 173.94,
"currency": "MXN",
"sectionCode": "VIP",
"seatCode": null,
"isSold": false,
"createdAt": "2026-11-07T13:21:01.760Z"
}