Jun
20
Sat
World Rippin Gala
9:16 PM
West Delphacester Stadium
From AUD 53.48
Overview
tickets / #189
9:16 PM
West Delphacester Stadium
From AUD 53.48
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/189" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/189" ); 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/189"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/189"
)
ticket = res.json() Response
{
"id": 189,
"eventName": "World Rippin Gala",
"venue": "West Delphacester Stadium",
"eventAt": "2026-06-20T21:16:58.015Z",
"type": "balcony",
"price": 53.48,
"currency": "AUD",
"sectionCode": "C2",
"seatCode": "R34",
"isSold": false,
"createdAt": "2026-03-28T21:16:58.015Z"
}