Jul
21
Tue
International Hilpert Gala
4:39 PM
South Cristian Convention Center
From GBP 472.58
Overview
tickets / #229
4:39 PM
South Cristian Convention Center
From GBP 472.58
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/229" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/229" ); 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/229"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/229"
)
ticket = res.json() Response
{
"id": 229,
"eventName": "International Hilpert Gala",
"venue": "South Cristian Convention Center",
"eventAt": "2026-07-21T16:39:09.306Z",
"type": "reserved",
"price": 472.58,
"currency": "GBP",
"sectionCode": "GA",
"seatCode": "O25",
"isSold": false,
"createdAt": "2026-04-28T16:39:09.306Z"
}