Apr
20
Mon
Grand McGlynn Summit
9:03 PM
Mullerstad Convention Center
From MXN280.95
tickets / #26
9:03 PM
Mullerstad Convention Center
From MXN280.95
curl -sS \
"https://example-data.com/api/v1/tickets/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/26"
);
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/26"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/26"
)
ticket = res.json() {
"id": 26,
"eventName": "Grand McGlynn Summit",
"venue": "Mullerstad Convention Center",
"eventAt": "2026-04-20T21:03:31.309Z",
"type": "reserved",
"price": 280.95,
"currency": "MXN",
"sectionCode": "FLOOR",
"seatCode": "M47",
"isSold": false,
"createdAt": "2026-01-22T21:03:31.309Z"
}