Oct
30
Thu
Annual Tromp Gala
1:35 AM
Lawrence Convention Center
From JPY 244.56
Overview
tickets / #115
1:35 AM
Lawrence Convention Center
From JPY 244.56
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/115" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/115" ); 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/115"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/115"
)
ticket = res.json() Response
{
"id": 115,
"eventName": "Annual Tromp Gala",
"venue": "Lawrence Convention Center",
"eventAt": "2025-10-30T01:35:53.403Z",
"type": "standing",
"price": 244.56,
"currency": "JPY",
"sectionCode": "D1",
"seatCode": null,
"isSold": false,
"createdAt": "2025-10-14T01:35:53.403Z"
}