Apr
4
Sat
Classic Bartell Concert
4:28 AM
Tucson Theater
From EUR567.05
tickets / #155
4:28 AM
Tucson Theater
From EUR567.05
curl -sS \
"https://example-data.com/api/v1/tickets/155" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/155"
);
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/155"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/155"
)
ticket = res.json() {
"id": 155,
"eventName": "Classic Bartell Concert",
"venue": "Tucson Theater",
"eventAt": "2026-04-04T04:28:48.839Z",
"type": "vip",
"price": 567.05,
"currency": "EUR",
"sectionCode": "A1",
"seatCode": "X7",
"isSold": false,
"createdAt": "2025-11-06T04:28:48.839Z"
}