Feb
3
Tue
World Bartoletti Finals
6:57 PM
Effieshire Auditorium
From CAD 37.89
Overview
tickets / #206
6:57 PM
Effieshire Auditorium
From CAD 37.89
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/206" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/206" ); 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/206"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/206"
)
ticket = res.json() Response
{
"id": 206,
"eventName": "World Bartoletti Finals",
"venue": "Effieshire Auditorium",
"eventAt": "2026-02-03T18:57:01.525Z",
"type": "reserved",
"price": 37.89,
"currency": "CAD",
"sectionCode": "B1",
"seatCode": "R31",
"isSold": true,
"createdAt": "2026-01-11T18:57:01.525Z"
}