Nov
26
Wed
Grand White Exhibition
4:31 PM
Brendenchester Arena
From CAD 595.75
Overview
tickets / #2
4:31 PM
Brendenchester Arena
From CAD 595.75
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/2" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/2" ); 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/2"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/2"
)
ticket = res.json() Response
{
"id": 2,
"eventName": "Grand White Exhibition",
"venue": "Brendenchester Arena",
"eventAt": "2025-11-26T16:31:06.526Z",
"type": "vip",
"price": 595.75,
"currency": "CAD",
"sectionCode": "D2",
"seatCode": "J18",
"isSold": true,
"createdAt": "2025-06-26T16:31:06.526Z"
}