Oct
21
Wed
National Bradtke Exhibition
4:59 PM
Thielhaven Theater
From GBP572.32
tickets / #59
4:59 PM
Thielhaven Theater
From GBP572.32
curl -sS \
"https://example-data.com/api/v1/tickets/59" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/59"
);
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/59"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/59"
)
ticket = res.json() {
"id": 59,
"eventName": "National Bradtke Exhibition",
"venue": "Thielhaven Theater",
"eventAt": "2026-10-21T16:59:18.718Z",
"type": "balcony",
"price": 572.32,
"currency": "GBP",
"sectionCode": "VIP",
"seatCode": "P31",
"isSold": false,
"createdAt": "2026-09-20T16:59:18.718Z"
}