Aug
31
Mon
Annual Reilly Open
4:54 PM
Breitenbergburgh Auditorium
From JPY 543.39
Overview
tickets / #167
4:54 PM
Breitenbergburgh Auditorium
From JPY 543.39
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/167" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/167" ); 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/167"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/167"
)
ticket = res.json() Response
{
"id": 167,
"eventName": "Annual Reilly Open",
"venue": "Breitenbergburgh Auditorium",
"eventAt": "2026-08-31T16:54:18.958Z",
"type": "vip",
"price": 543.39,
"currency": "JPY",
"sectionCode": "D1",
"seatCode": "W9",
"isSold": true,
"createdAt": "2026-08-14T16:54:18.958Z"
}