Mar
5
Fri
Grand Yundt Championship
1:41 AM
East Saultown Convention Center
From CAD 615.73
Overview
tickets / #225
1:41 AM
East Saultown Convention Center
From CAD 615.73
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/225" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/225" ); 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/225"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/225"
)
ticket = res.json() Response
{
"id": 225,
"eventName": "Grand Yundt Championship",
"venue": "East Saultown Convention Center",
"eventAt": "2027-03-05T01:41:18.842Z",
"type": "balcony",
"price": 615.73,
"currency": "CAD",
"sectionCode": "D2",
"seatCode": "G49",
"isSold": true,
"createdAt": "2027-01-29T01:41:18.842Z"
}