Jul
21
Tue
National Beier Championship
12:44 PM
Ezraview Theater
From JPY 609.68
Overview
tickets / #123
12:44 PM
Ezraview Theater
From JPY 609.68
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/123" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/123" ); 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/123"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/123"
)
ticket = res.json() Response
{
"id": 123,
"eventName": "National Beier Championship",
"venue": "Ezraview Theater",
"eventAt": "2026-07-21T12:44:17.330Z",
"type": "balcony",
"price": 609.68,
"currency": "JPY",
"sectionCode": "A2",
"seatCode": "T48",
"isSold": true,
"createdAt": "2026-05-22T12:44:17.330Z"
}