Dec
26
Fri
Annual Abernathy Exhibition
3:12 PM
Denton Theater
From USD 371.96
Overview
tickets / #142
3:12 PM
Denton Theater
From USD 371.96
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/142" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/142" ); 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/142"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/142"
)
ticket = res.json() Response
{
"id": 142,
"eventName": "Annual Abernathy Exhibition",
"venue": "Denton Theater",
"eventAt": "2025-12-26T15:12:21.489Z",
"type": "vip",
"price": 371.96,
"currency": "USD",
"sectionCode": "FLOOR",
"seatCode": "W3",
"isSold": false,
"createdAt": "2025-09-29T15:12:21.489Z"
}