Sep
15
Tue
Grand Kirlin Gala
7:07 PM
Ocieside Amphitheater
From MXN 929.55
Overview
tickets / #13
7:07 PM
Ocieside Amphitheater
From MXN 929.55
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/13" ); 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/13"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/13"
)
ticket = res.json() Response
{
"id": 13,
"eventName": "Grand Kirlin Gala",
"venue": "Ocieside Amphitheater",
"eventAt": "2026-09-15T19:07:13.152Z",
"type": "balcony",
"price": 929.55,
"currency": "MXN",
"sectionCode": "A2",
"seatCode": "Y19",
"isSold": true,
"createdAt": "2026-06-22T19:07:13.152Z"
}