Nov
18
Tue
Ultimate Ankunding Tour
5:14 AM
South Karianneview Concert Hall
From MXN332.21
tickets / #114
5:14 AM
South Karianneview Concert Hall
From MXN332.21
curl -sS \
"https://example-data.com/api/v1/tickets/114" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/114"
);
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/114"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/114"
)
ticket = res.json() {
"id": 114,
"eventName": "Ultimate Ankunding Tour",
"venue": "South Karianneview Concert Hall",
"eventAt": "2025-11-18T05:14:00.662Z",
"type": "standing",
"price": 332.21,
"currency": "MXN",
"sectionCode": "B2",
"seatCode": null,
"isSold": true,
"createdAt": "2025-08-14T05:14:00.662Z"
}