Jan
28
Wed
Annual Abshire Concert
4:22 PM
South Valley Convention Center
From MXN199.84
tickets / #82
4:22 PM
South Valley Convention Center
From MXN199.84
curl -sS \
"https://example-data.com/api/v1/tickets/82" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/82"
);
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/82"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/82"
)
ticket = res.json() {
"id": 82,
"eventName": "Annual Abshire Concert",
"venue": "South Valley Convention Center",
"eventAt": "2026-01-28T16:22:21.134Z",
"type": "vip",
"price": 199.84,
"currency": "MXN",
"sectionCode": "C2",
"seatCode": "D37",
"isSold": false,
"createdAt": "2025-11-07T16:22:21.134Z"
}