May
22
Fri
National Bauch Festival
8:09 AM
Fort Bennett Pavilion
From EUR553.09
tickets / #169
8:09 AM
Fort Bennett Pavilion
From EUR553.09
curl -sS \
"https://example-data.com/api/v1/tickets/169" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/169"
);
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/169"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/169"
)
ticket = res.json() {
"id": 169,
"eventName": "National Bauch Festival",
"venue": "Fort Bennett Pavilion",
"eventAt": "2026-05-22T08:09:51.631Z",
"type": "vip",
"price": 553.09,
"currency": "EUR",
"sectionCode": "FLOOR",
"seatCode": "U24",
"isSold": true,
"createdAt": "2026-03-21T08:09:51.631Z"
}