Aug
23
Sun
National Welch Championship
2:21 AM
Coral Springs Amphitheater
From JPY 898.52
Overview
tickets / #289
2:21 AM
Coral Springs Amphitheater
From JPY 898.52
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/289" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/289" ); 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/289"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/289"
)
ticket = res.json() Response
{
"id": 289,
"eventName": "National Welch Championship",
"venue": "Coral Springs Amphitheater",
"eventAt": "2026-08-23T02:21:40.814Z",
"type": "general",
"price": 898.52,
"currency": "JPY",
"sectionCode": "D2",
"seatCode": null,
"isSold": false,
"createdAt": "2026-04-26T02:21:40.814Z"
}