Oct
21
Wed
National Bradtke Exhibition
4:59 PM
Thielhaven Theater
From GBP 572.32
Overview
tickets / #59
4:59 PM
Thielhaven Theater
From GBP 572.32
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/59" ); const ticket = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tickets.d.ts https://example-data.com/types/tickets.d.ts
import type { Ticket } from "./types/tickets";
const res = await fetch(
"https://example-data.com/api/v1/tickets/59"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/59"
)
ticket = res.json() Response
{
"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"
}