Feb
6
Sat
Classic Prohaska Open
4:32 AM
South Chelsie Theater
From MXN333.10
tickets / #205
4:32 AM
South Chelsie Theater
From MXN333.10
curl -sS \
"https://example-data.com/api/v1/tickets/205" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/205"
);
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/205"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/205"
)
ticket = res.json() {
"id": 205,
"eventName": "Classic Prohaska Open",
"venue": "South Chelsie Theater",
"eventAt": "2027-02-06T04:32:56.326Z",
"type": "balcony",
"price": 333.1,
"currency": "MXN",
"sectionCode": "B2",
"seatCode": "X29",
"isSold": true,
"createdAt": "2026-10-24T04:32:56.326Z"
}