Sep
18
Fri
The Bednar Gala
11:49 PM
Arvada Pavilion
From MXN 357.03
Overview
tickets / #107
11:49 PM
Arvada Pavilion
From MXN 357.03
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/107" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/107" ); const ticket = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tickets.d.ts https://example-data.com/types/tickets.d.ts
import type { Ticket } from "./types/tickets";
const res = await fetch(
"https://example-data.com/api/v1/tickets/107"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/107"
)
ticket = res.json() Response
{
"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"
}