Nov
8
Sat
International Kirlin Finals
11:43 AM
Leehaven Amphitheater
From CAD 974.89
Overview
tickets / #131
11:43 AM
Leehaven Amphitheater
From CAD 974.89
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/131" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/131" ); 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/131"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/131"
)
ticket = res.json() Response
{
"id": 131,
"eventName": "International Kirlin Finals",
"venue": "Leehaven Amphitheater",
"eventAt": "2025-11-08T11:43:50.848Z",
"type": "general",
"price": 974.89,
"currency": "CAD",
"sectionCode": "B1",
"seatCode": null,
"isSold": false,
"createdAt": "2025-08-10T11:43:50.848Z"
}