Dec
15
Mon
World Muller Championship
6:58 AM
Bahringerboro Amphitheater
From AUD 134.23
Overview
tickets / #37
6:58 AM
Bahringerboro Amphitheater
From AUD 134.23
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/37" ); 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/37"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/37"
)
ticket = res.json() Response
{
"id": 37,
"eventName": "World Muller Championship",
"venue": "Bahringerboro Amphitheater",
"eventAt": "2025-12-15T06:58:47.075Z",
"type": "reserved",
"price": 134.23,
"currency": "AUD",
"sectionCode": "GA",
"seatCode": "D2",
"isSold": false,
"createdAt": "2025-10-13T06:58:47.075Z"
}