Jul
4
Sat
World Kohler Summit
9:58 AM
East Alessia Theater
From AUD 838.09
Overview
tickets / #173
9:58 AM
East Alessia Theater
From AUD 838.09
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/173" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/173" ); 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/173"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/173"
)
ticket = res.json() Response
{
"id": 173,
"eventName": "World Kohler Summit",
"venue": "East Alessia Theater",
"eventAt": "2026-07-04T09:58:04.014Z",
"type": "balcony",
"price": 838.09,
"currency": "AUD",
"sectionCode": "A2",
"seatCode": "E1",
"isSold": false,
"createdAt": "2026-04-28T09:58:04.014Z"
}