Jul
8
Tue
International Sauer Championship
3:56 PM
Owenton Arena
From JPY919.10
tickets / #63
3:56 PM
Owenton Arena
From JPY919.10
curl -sS \
"https://example-data.com/api/v1/tickets/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/63"
);
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/63"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/63"
)
ticket = res.json() {
"id": 63,
"eventName": "International Sauer Championship",
"venue": "Owenton Arena",
"eventAt": "2025-07-08T15:56:17.987Z",
"type": "vip",
"price": 919.1,
"currency": "JPY",
"sectionCode": "VIP",
"seatCode": "K4",
"isSold": false,
"createdAt": "2025-04-12T15:56:17.987Z"
}