Dec
6
Sat
Ultimate Hermann Exhibition
8:26 PM
Lake Alphonso Convention Center
From AUD772.76
tickets / #20
8:26 PM
Lake Alphonso Convention Center
From AUD772.76
curl -sS \
"https://example-data.com/api/v1/tickets/20" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/20"
);
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/20"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/20"
)
ticket = res.json() {
"id": 20,
"eventName": "Ultimate Hermann Exhibition",
"venue": "Lake Alphonso Convention Center",
"eventAt": "2025-12-06T20:26:21.645Z",
"type": "general",
"price": 772.76,
"currency": "AUD",
"sectionCode": "GA",
"seatCode": null,
"isSold": true,
"createdAt": "2025-08-22T20:26:21.645Z"
}