Feb
15
Sun
The VonRueden Concert
3:08 AM
Fort Jamisonview Auditorium
From JPY199.63
tickets / #109
3:08 AM
Fort Jamisonview Auditorium
From JPY199.63
curl -sS \
"https://example-data.com/api/v1/tickets/109" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/109"
);
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/109"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/109"
)
ticket = res.json() {
"id": 109,
"eventName": "The VonRueden Concert",
"venue": "Fort Jamisonview Auditorium",
"eventAt": "2026-02-15T03:08:01.045Z",
"type": "vip",
"price": 199.63,
"currency": "JPY",
"sectionCode": "A1",
"seatCode": "A15",
"isSold": false,
"createdAt": "2025-10-16T03:08:01.045Z"
}