Apr
19
Sun
International Von Exhibition
12:27 PM
Port Emie Pavilion
From JPY 548.09
Overview
tickets / #152
12:27 PM
Port Emie Pavilion
From JPY 548.09
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/152" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/152" ); 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/152"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/152"
)
ticket = res.json() Response
{
"id": 152,
"eventName": "International Von Exhibition",
"venue": "Port Emie Pavilion",
"eventAt": "2026-04-19T12:27:03.828Z",
"type": "reserved",
"price": 548.09,
"currency": "JPY",
"sectionCode": "VIP",
"seatCode": "Y49",
"isSold": true,
"createdAt": "2026-01-11T12:27:03.828Z"
}