Dec
15
Mon
World Muller Championship
6:58 AM
Bahringerboro Amphitheater
From AUD134.23
tickets / #37
6:58 AM
Bahringerboro Amphitheater
From AUD134.23
curl -sS \
"https://example-data.com/api/v1/tickets/37" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/37"
);
const ticket = await res.json();import type { Ticket } from "https://example-data.com/types/tickets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tickets/37"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/37"
)
ticket = res.json() {
"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"
}