Nov
26
Wed
Grand Bode Concert
2:33 PM
Israelbury Auditorium
From JPY 465.88
Overview
tickets / #259
2:33 PM
Israelbury Auditorium
From JPY 465.88
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/259" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/259" ); 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/259"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/259"
)
ticket = res.json() Response
{
"id": 259,
"eventName": "Grand Bode Concert",
"venue": "Israelbury Auditorium",
"eventAt": "2025-11-26T14:33:38.622Z",
"type": "balcony",
"price": 465.88,
"currency": "JPY",
"sectionCode": "D1",
"seatCode": "Q41",
"isSold": false,
"createdAt": "2025-07-03T14:33:38.622Z"
}