Feb
3
Wed
Annual Abbott Exhibition
11:16 AM
Gaithersburg Auditorium
From GBP 483.01
Overview
tickets / #285
11:16 AM
Gaithersburg Auditorium
From GBP 483.01
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/285" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/285" ); 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/285"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/285"
)
ticket = res.json() Response
{
"id": 285,
"eventName": "Annual Abbott Exhibition",
"venue": "Gaithersburg Auditorium",
"eventAt": "2027-02-03T11:16:47.355Z",
"type": "standing",
"price": 483.01,
"currency": "GBP",
"sectionCode": "C1",
"seatCode": null,
"isSold": false,
"createdAt": "2026-08-26T11:16:47.355Z"
}