Jun
10
Wed
Annual Kautzer Tour
2:38 PM
Farrellborough Pavilion
From GBP 21.44
Overview
tickets / #258
2:38 PM
Farrellborough Pavilion
From GBP 21.44
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/258" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/258" ); 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/258"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/258"
)
ticket = res.json() Response
{
"id": 258,
"eventName": "Annual Kautzer Tour",
"venue": "Farrellborough Pavilion",
"eventAt": "2026-06-10T14:38:59.867Z",
"type": "standing",
"price": 21.44,
"currency": "GBP",
"sectionCode": "GA",
"seatCode": null,
"isSold": false,
"createdAt": "2026-03-20T14:38:59.867Z"
}