Apr
24
Fri
The DuBuque Show
5:40 AM
West Shawnafield Arena
From AUD711.57
tickets / #33
5:40 AM
West Shawnafield Arena
From AUD711.57
curl -sS \
"https://example-data.com/api/v1/tickets/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/33"
);
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/33"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/33"
)
ticket = res.json() {
"id": 33,
"eventName": "The DuBuque Show",
"venue": "West Shawnafield Arena",
"eventAt": "2026-04-24T05:40:21.136Z",
"type": "balcony",
"price": 711.57,
"currency": "AUD",
"sectionCode": "A2",
"seatCode": "B23",
"isSold": false,
"createdAt": "2025-12-13T05:40:21.136Z"
}