Mar
19
Thu
Annual Ratke Concert
3:58 AM
Cormierberg Concert Hall
From GBP 406.79
Overview
tickets / #147
3:58 AM
Cormierberg Concert Hall
From GBP 406.79
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/147" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/147" ); 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/147"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/147"
)
ticket = res.json() Response
{
"id": 147,
"eventName": "Annual Ratke Concert",
"venue": "Cormierberg Concert Hall",
"eventAt": "2026-03-19T03:58:54.879Z",
"type": "general",
"price": 406.79,
"currency": "GBP",
"sectionCode": "C1",
"seatCode": null,
"isSold": true,
"createdAt": "2026-01-19T03:58:54.879Z"
}