Jul
5
Sat
National Franey Gala
7:13 AM
Compton Convention Center
From MXN346.31
tickets / #159
7:13 AM
Compton Convention Center
From MXN346.31
curl -sS \
"https://example-data.com/api/v1/tickets/159" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/159"
);
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/159"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/159"
)
ticket = res.json() {
"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"
}