Sep
27
Sun
Grand Wiza Finals
12:32 PM
Lake Hollyfurt Theater
From MXN861.89
tickets / #146
12:32 PM
Lake Hollyfurt Theater
From MXN861.89
curl -sS \
"https://example-data.com/api/v1/tickets/146" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/146"
);
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/146"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/146"
)
ticket = res.json() {
"id": 146,
"eventName": "Grand Wiza Finals",
"venue": "Lake Hollyfurt Theater",
"eventAt": "2026-09-27T12:32:44.510Z",
"type": "vip",
"price": 861.89,
"currency": "MXN",
"sectionCode": "B2",
"seatCode": "F17",
"isSold": false,
"createdAt": "2026-08-12T12:32:44.510Z"
}