May
13
Wed
The Walker Finals
12:16 PM
Hauckside Concert Hall
From JPY 298.36
Overview
tickets / #122
12:16 PM
Hauckside Concert Hall
From JPY 298.36
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/122" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/122" ); 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/122"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/122"
)
ticket = res.json() Response
{
"id": 122,
"eventName": "The Walker Finals",
"venue": "Hauckside Concert Hall",
"eventAt": "2026-05-13T12:16:48.103Z",
"type": "balcony",
"price": 298.36,
"currency": "JPY",
"sectionCode": "C1",
"seatCode": "W10",
"isSold": false,
"createdAt": "2025-12-10T12:16:48.103Z"
}