Feb
2
Mon
Ultimate Konopelski Show
11:43 AM
Torphyshire Stadium
From AUD713.48
tickets / #135
11:43 AM
Torphyshire Stadium
From AUD713.48
curl -sS \
"https://example-data.com/api/v1/tickets/135" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/135"
);
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/135"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/135"
)
ticket = res.json() {
"id": 135,
"eventName": "Ultimate Konopelski Show",
"venue": "Torphyshire Stadium",
"eventAt": "2026-02-02T11:43:32.032Z",
"type": "reserved",
"price": 713.48,
"currency": "AUD",
"sectionCode": "C2",
"seatCode": "V38",
"isSold": false,
"createdAt": "2025-12-01T11:43:32.032Z"
}