Jun
3
Wed
Classic Powlowski Show
11:03 AM
North Winfield Convention Center
From MXN411.78
tickets / #87
11:03 AM
North Winfield Convention Center
From MXN411.78
curl -sS \
"https://example-data.com/api/v1/tickets/87" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/87"
);
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/87"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/87"
)
ticket = res.json() {
"id": 87,
"eventName": "Classic Powlowski Show",
"venue": "North Winfield Convention Center",
"eventAt": "2026-06-03T11:03:54.542Z",
"type": "standing",
"price": 411.78,
"currency": "MXN",
"sectionCode": "A1",
"seatCode": null,
"isSold": true,
"createdAt": "2026-05-20T11:03:54.542Z"
}