Aug
13
Thu
National Emmerich Gala
10:48 PM
Lindfort Convention Center
From GBP 331.55
Overview
tickets / #81
10:48 PM
Lindfort Convention Center
From GBP 331.55
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/81" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/81" ); 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/81"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/81"
)
ticket = res.json() Response
{
"id": 81,
"eventName": "National Emmerich Gala",
"venue": "Lindfort Convention Center",
"eventAt": "2026-08-13T22:48:12.887Z",
"type": "standing",
"price": 331.55,
"currency": "GBP",
"sectionCode": "D1",
"seatCode": null,
"isSold": false,
"createdAt": "2026-07-11T22:48:12.887Z"
}