Sep
18
Fri
The Bednar Gala
11:49 PM
Arvada Pavilion
From MXN357.03
tickets / #107
11:49 PM
Arvada Pavilion
From MXN357.03
curl -sS \
"https://example-data.com/api/v1/tickets/107" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/107"
);
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/107"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/107"
)
ticket = res.json() {
"id": 107,
"eventName": "The Bednar Gala",
"venue": "Arvada Pavilion",
"eventAt": "2026-09-18T23:49:22.210Z",
"type": "balcony",
"price": 357.03,
"currency": "MXN",
"sectionCode": "A1",
"seatCode": "L17",
"isSold": false,
"createdAt": "2026-06-26T23:49:22.210Z"
}