Jul
5
Sat
National Bogan Tour
9:08 AM
Andersonburgh Arena
From GBP399.26
tickets / #208
9:08 AM
Andersonburgh Arena
From GBP399.26
curl -sS \
"https://example-data.com/api/v1/tickets/208" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/208"
);
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/208"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/208"
)
ticket = res.json() {
"id": 208,
"eventName": "National Bogan Tour",
"venue": "Andersonburgh Arena",
"eventAt": "2025-07-05T09:08:58.432Z",
"type": "vip",
"price": 399.26,
"currency": "GBP",
"sectionCode": "FLOOR",
"seatCode": "Z23",
"isSold": false,
"createdAt": "2025-01-18T09:08:58.432Z"
}