Jan
11
Sun
Classic Parker Gala
1:15 AM
Wisokyberg Stadium
From JPY 325.71
Overview
tickets / #279
1:15 AM
Wisokyberg Stadium
From JPY 325.71
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/279" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/279" ); 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/279"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/279"
)
ticket = res.json() Response
{
"id": 279,
"eventName": "Classic Parker Gala",
"venue": "Wisokyberg Stadium",
"eventAt": "2026-01-11T01:15:54.745Z",
"type": "reserved",
"price": 325.71,
"currency": "JPY",
"sectionCode": "B1",
"seatCode": "N10",
"isSold": false,
"createdAt": "2025-07-16T01:15:54.745Z"
}