Feb
27
Sat
Ultimate Hauck Open
11:22 AM
Anchorage Convention Center
From CAD306.41
tickets / #198
11:22 AM
Anchorage Convention Center
From CAD306.41
curl -sS \
"https://example-data.com/api/v1/tickets/198" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/198"
);
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/198"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/198"
)
ticket = res.json() {
"id": 198,
"eventName": "Ultimate Hauck Open",
"venue": "Anchorage Convention Center",
"eventAt": "2027-02-27T11:22:00.069Z",
"type": "reserved",
"price": 306.41,
"currency": "CAD",
"sectionCode": "B1",
"seatCode": "A23",
"isSold": false,
"createdAt": "2027-01-01T11:22:00.069Z"
}