Feb
24
Tue
The Lehner Summit
11:30 AM
San Mateo Amphitheater
From MXN977.43
tickets / #230
11:30 AM
San Mateo Amphitheater
From MXN977.43
curl -sS \
"https://example-data.com/api/v1/tickets/230" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/230"
);
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/230"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/230"
)
ticket = res.json() {
"id": 230,
"eventName": "The Lehner Summit",
"venue": "San Mateo Amphitheater",
"eventAt": "2026-02-24T11:30:41.116Z",
"type": "balcony",
"price": 977.43,
"currency": "MXN",
"sectionCode": "A2",
"seatCode": "Y6",
"isSold": true,
"createdAt": "2025-10-07T11:30:41.116Z"
}