Dec
18
Fri
Grand Jones Championship
7:00 AM
Fort Rhodaboro Concert Hall
From AUD676.39
tickets / #210
7:00 AM
Fort Rhodaboro Concert Hall
From AUD676.39
curl -sS \
"https://example-data.com/api/v1/tickets/210" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/210"
);
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/210"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/210"
)
ticket = res.json() {
"id": 210,
"eventName": "Grand Jones Championship",
"venue": "Fort Rhodaboro Concert Hall",
"eventAt": "2026-12-18T07:00:35.006Z",
"type": "standing",
"price": 676.39,
"currency": "AUD",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": true,
"createdAt": "2026-07-02T07:00:35.006Z"
}