Nov
13
Thu
Classic Franey Open
2:42 PM
East Simeon Auditorium
From MXN 867.81
Overview
tickets / #154
2:42 PM
East Simeon Auditorium
From MXN 867.81
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/154" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/154" ); 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/154"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/154"
)
ticket = res.json() Response
{
"id": 154,
"eventName": "Classic Franey Open",
"venue": "East Simeon Auditorium",
"eventAt": "2025-11-13T14:42:06.933Z",
"type": "vip",
"price": 867.81,
"currency": "MXN",
"sectionCode": "C2",
"seatCode": "T45",
"isSold": false,
"createdAt": "2025-06-05T14:42:06.933Z"
}