Sep
27
Sat
International Sanford Tour
11:10 AM
Sipesbury Amphitheater
From JPY 271.30
Overview
tickets / #203
11:10 AM
Sipesbury Amphitheater
From JPY 271.30
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/203" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/203" ); 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/203"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/203"
)
ticket = res.json() Response
{
"id": 203,
"eventName": "International Sanford Tour",
"venue": "Sipesbury Amphitheater",
"eventAt": "2025-09-27T11:10:02.794Z",
"type": "standing",
"price": 271.3,
"currency": "JPY",
"sectionCode": "GA",
"seatCode": null,
"isSold": true,
"createdAt": "2025-09-20T11:10:02.794Z"
}