Jun
28
Sun
Classic Leffler Gala
10:22 PM
West Harveyton Auditorium
From MXN 314.92
Overview
tickets / #243
10:22 PM
West Harveyton Auditorium
From MXN 314.92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/243" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/243" ); 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/243"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/243"
)
ticket = res.json() Response
{
"id": 243,
"eventName": "Classic Leffler Gala",
"venue": "West Harveyton Auditorium",
"eventAt": "2026-06-28T22:22:58.289Z",
"type": "general",
"price": 314.92,
"currency": "MXN",
"sectionCode": "A1",
"seatCode": null,
"isSold": true,
"createdAt": "2026-01-17T22:22:58.289Z"
}