Jul
22
Wed
World Tremblay Festival
5:38 AM
Vitacester Concert Hall
From USD 701.19
Overview
tickets / #175
5:38 AM
Vitacester Concert Hall
From USD 701.19
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/175" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/175" ); 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/175"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/175"
)
ticket = res.json() Response
{
"id": 175,
"eventName": "World Tremblay Festival",
"venue": "Vitacester Concert Hall",
"eventAt": "2026-07-22T05:38:32.031Z",
"type": "standing",
"price": 701.19,
"currency": "USD",
"sectionCode": "C1",
"seatCode": null,
"isSold": true,
"createdAt": "2026-01-29T05:38:32.031Z"
}