Nov
18
Tue
Ultimate Ankunding Tour
5:14 AM
South Karianneview Concert Hall
From MXN 332.21
Overview
tickets / #114
5:14 AM
South Karianneview Concert Hall
From MXN 332.21
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/114" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/114" ); 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/114"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/114"
)
ticket = res.json() Response
{
"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"
}