Jun
12
Thu
World Weber Concert
7:16 AM
Schmidtburgh Stadium
From AUD461.63
tickets / #188
7:16 AM
Schmidtburgh Stadium
From AUD461.63
curl -sS \
"https://example-data.com/api/v1/tickets/188" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/188"
);
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/188"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/188"
)
ticket = res.json() {
"id": 188,
"eventName": "World Weber Concert",
"venue": "Schmidtburgh Stadium",
"eventAt": "2025-06-12T07:16:46.983Z",
"type": "balcony",
"price": 461.63,
"currency": "AUD",
"sectionCode": "C2",
"seatCode": "A13",
"isSold": false,
"createdAt": "2025-01-31T07:16:46.983Z"
}