Jul
14
Mon
World O'Kon Gala
9:48 AM
South Mohammadside Pavilion
From JPY 884.96
Overview
tickets / #29
9:48 AM
South Mohammadside Pavilion
From JPY 884.96
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/29" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/29" ); 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/29"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/29"
)
ticket = res.json() Response
{
"id": 29,
"eventName": "World O'Kon Gala",
"venue": "South Mohammadside Pavilion",
"eventAt": "2025-07-14T09:48:50.927Z",
"type": "standing",
"price": 884.96,
"currency": "JPY",
"sectionCode": "A1",
"seatCode": null,
"isSold": false,
"createdAt": "2025-06-26T09:48:50.927Z"
}