Oct
1
Thu
Grand Prohaska Summit
7:50 AM
Brettworth Convention Center
From JPY 900.95
Overview
tickets / #291
7:50 AM
Brettworth Convention Center
From JPY 900.95
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/291" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/291" ); 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/291"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/291"
)
ticket = res.json() Response
{
"id": 291,
"eventName": "Grand Prohaska Summit",
"venue": "Brettworth Convention Center",
"eventAt": "2026-10-01T07:50:57.686Z",
"type": "general",
"price": 900.95,
"currency": "JPY",
"sectionCode": "D2",
"seatCode": null,
"isSold": false,
"createdAt": "2026-04-24T07:50:57.686Z"
}