Feb
26
Thu
World Reichert Festival
11:57 AM
East Jackycester Auditorium
From GBP 42.63
Overview
tickets / #241
11:57 AM
East Jackycester Auditorium
From GBP 42.63
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/241" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/241" ); 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/241"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/241"
)
ticket = res.json() Response
{
"id": 241,
"eventName": "World Reichert Festival",
"venue": "East Jackycester Auditorium",
"eventAt": "2026-02-26T11:57:35.466Z",
"type": "vip",
"price": 42.63,
"currency": "GBP",
"sectionCode": "D1",
"seatCode": "V5",
"isSold": false,
"createdAt": "2025-11-02T11:57:35.466Z"
}