Nov
13
Thu
Classic Franey Open
2:42 PM
East Simeon Auditorium
From MXN867.81
tickets / #154
2:42 PM
East Simeon Auditorium
From MXN867.81
curl -sS \
"https://example-data.com/api/v1/tickets/154" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/154"
);
const ticket = await res.json();import type { Ticket } from "https://example-data.com/types/tickets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tickets/154"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/154"
)
ticket = res.json() {
"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"
}