Jul
26
Sun
World Miller Tour
3:33 PM
Gleichnerworth Concert Hall
From CAD 214.52
Overview
tickets / #257
3:33 PM
Gleichnerworth Concert Hall
From CAD 214.52
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/257" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/257" ); 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/257"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/257"
)
ticket = res.json() Response
{
"id": 257,
"eventName": "World Miller Tour",
"venue": "Gleichnerworth Concert Hall",
"eventAt": "2026-07-26T15:33:25.677Z",
"type": "general",
"price": 214.52,
"currency": "CAD",
"sectionCode": "B2",
"seatCode": null,
"isSold": false,
"createdAt": "2026-06-14T15:33:25.677Z"
}