Jul
5
Sat
National Franey Gala
7:13 AM
Compton Convention Center
From MXN 346.31
Overview
tickets / #159
7:13 AM
Compton Convention Center
From MXN 346.31
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/159" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/159" ); 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/159"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/159"
)
ticket = res.json() Response
{
"id": 159,
"eventName": "National Franey Gala",
"venue": "Compton Convention Center",
"eventAt": "2025-07-05T07:13:09.363Z",
"type": "general",
"price": 346.31,
"currency": "MXN",
"sectionCode": "C2",
"seatCode": null,
"isSold": false,
"createdAt": "2025-01-11T07:13:09.363Z"
}