Aug
16
Sun
Annual Will Finals
2:55 PM
Lubbock Auditorium
From JPY 650.10
Overview
tickets / #88
2:55 PM
Lubbock Auditorium
From JPY 650.10
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/88" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/88" ); 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/88"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/88"
)
ticket = res.json() Response
{
"id": 88,
"eventName": "Annual Will Finals",
"venue": "Lubbock Auditorium",
"eventAt": "2026-08-16T14:55:42.628Z",
"type": "reserved",
"price": 650.1,
"currency": "JPY",
"sectionCode": "VIP",
"seatCode": "X44",
"isSold": true,
"createdAt": "2026-04-23T14:55:42.628Z"
}