Mar
20
Sat
International Treutel Gala
11:07 AM
Stiedemannville Amphitheater
From JPY 267.61
Overview
tickets / #265
11:07 AM
Stiedemannville Amphitheater
From JPY 267.61
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/265" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/265" ); 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/265"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/265"
)
ticket = res.json() Response
{
"id": 265,
"eventName": "International Treutel Gala",
"venue": "Stiedemannville Amphitheater",
"eventAt": "2027-03-20T11:07:26.667Z",
"type": "standing",
"price": 267.61,
"currency": "JPY",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": false,
"createdAt": "2027-03-12T11:07:26.667Z"
}