May
22
Fri
National Bauch Festival
8:09 AM
Fort Bennett Pavilion
From EUR 553.09
Overview
tickets / #169
8:09 AM
Fort Bennett Pavilion
From EUR 553.09
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/169" ); 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/169"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/169"
)
ticket = res.json() Response
{
"id": 169,
"eventName": "National Bauch Festival",
"venue": "Fort Bennett Pavilion",
"eventAt": "2026-05-22T08:09:51.631Z",
"type": "vip",
"price": 553.09,
"currency": "EUR",
"sectionCode": "FLOOR",
"seatCode": "U24",
"isSold": true,
"createdAt": "2026-03-21T08:09:51.631Z"
}