May
13
Wed
The Walker Finals
12:16 PM
Hauckside Concert Hall
From JPY298.36
tickets / #122
12:16 PM
Hauckside Concert Hall
From JPY298.36
curl -sS \
"https://example-data.com/api/v1/tickets/122" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/122"
);
const ticket = await res.json();import type { Ticket } from "https://example-data.com/types/tickets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tickets/122"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/122"
)
ticket = res.json() {
"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"
}