Jan
21
Wed
Ultimate Predovic Festival
2:39 PM
Kuhnburgh Theater
From USD 139.96
Overview
tickets / #120
2:39 PM
Kuhnburgh Theater
From USD 139.96
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/120" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/120" ); 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/120"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/120"
)
ticket = res.json() Response
{
"id": 120,
"eventName": "Ultimate Predovic Festival",
"venue": "Kuhnburgh Theater",
"eventAt": "2026-01-21T14:39:02.818Z",
"type": "general",
"price": 139.96,
"currency": "USD",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": true,
"createdAt": "2025-10-09T14:39:02.818Z"
}