Aug
21
Fri
The Rempel-Stokes Finals
8:18 PM
New Lester Auditorium
From GBP 809.74
Overview
tickets / #183
8:18 PM
New Lester Auditorium
From GBP 809.74
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/183" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/183" ); 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/183"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/183"
)
ticket = res.json() Response
{
"id": 183,
"eventName": "The Rempel-Stokes Finals",
"venue": "New Lester Auditorium",
"eventAt": "2026-08-21T20:18:51.225Z",
"type": "standing",
"price": 809.74,
"currency": "GBP",
"sectionCode": "B1",
"seatCode": null,
"isSold": true,
"createdAt": "2026-04-06T20:18:51.225Z"
}