May
28
Wed
Grand Larson Exhibition
2:09 PM
Lillacester Arena
From AUD713.21
tickets / #161
2:09 PM
Lillacester Arena
From AUD713.21
curl -sS \
"https://example-data.com/api/v1/tickets/161" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/161"
);
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/161"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/161"
)
ticket = res.json() {
"id": 161,
"eventName": "Grand Larson Exhibition",
"venue": "Lillacester Arena",
"eventAt": "2025-05-28T14:09:46.951Z",
"type": "general",
"price": 713.21,
"currency": "AUD",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": false,
"createdAt": "2025-01-29T14:09:46.951Z"
}