Dec
26
Fri
Annual Abernathy Exhibition
3:12 PM
Denton Theater
From USD371.96
tickets / #142
3:12 PM
Denton Theater
From USD371.96
curl -sS \
"https://example-data.com/api/v1/tickets/142" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/142"
);
const ticket = await res.json();import type { Ticket } from "https://example-data.com/types/tickets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tickets/142"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/142"
)
ticket = res.json() {
"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"
}