Feb
19
Fri
The Feest Gala
5:07 AM
East Chesterfurt Auditorium
From JPY 361.41
Overview
tickets / #271
5:07 AM
East Chesterfurt Auditorium
From JPY 361.41
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/271" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/271" ); 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/271"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/271"
)
ticket = res.json() Response
{
"id": 271,
"eventName": "The Feest Gala",
"venue": "East Chesterfurt Auditorium",
"eventAt": "2027-02-19T05:07:58.514Z",
"type": "reserved",
"price": 361.41,
"currency": "JPY",
"sectionCode": "B2",
"seatCode": "V27",
"isSold": false,
"createdAt": "2026-08-25T05:07:58.514Z"
}