Dec
17
Wed
National Leffler Open
7:29 AM
Fort Nicklaus Arena
From JPY 546.32
Overview
tickets / #69
7:29 AM
Fort Nicklaus Arena
From JPY 546.32
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/69" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/69" ); 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/69"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/69"
)
ticket = res.json() Response
{
"id": 69,
"eventName": "National Leffler Open",
"venue": "Fort Nicklaus Arena",
"eventAt": "2025-12-17T07:29:26.200Z",
"type": "vip",
"price": 546.32,
"currency": "JPY",
"sectionCode": "GA",
"seatCode": "L33",
"isSold": true,
"createdAt": "2025-10-12T07:29:26.200Z"
}