Dec
6
Sat
Ultimate Hermann Exhibition
8:26 PM
Lake Alphonso Convention Center
From AUD 772.76
Overview
tickets / #20
8:26 PM
Lake Alphonso Convention Center
From AUD 772.76
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/20" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/20" ); 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/20"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/20"
)
ticket = res.json() Response
{
"id": 20,
"eventName": "Ultimate Hermann Exhibition",
"venue": "Lake Alphonso Convention Center",
"eventAt": "2025-12-06T20:26:21.645Z",
"type": "general",
"price": 772.76,
"currency": "AUD",
"sectionCode": "GA",
"seatCode": null,
"isSold": true,
"createdAt": "2025-08-22T20:26:21.645Z"
}