Aug
17
Sun
Annual Steuber Festival
5:00 AM
San Francisco Convention Center
From GBP460.90
tickets / #22
5:00 AM
San Francisco Convention Center
From GBP460.90
curl -sS \
"https://example-data.com/api/v1/tickets/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/22"
);
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/22"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/22"
)
ticket = res.json() {
"id": 22,
"eventName": "Annual Steuber Festival",
"venue": "San Francisco Convention Center",
"eventAt": "2025-08-17T05:00:18.258Z",
"type": "vip",
"price": 460.9,
"currency": "GBP",
"sectionCode": "B2",
"seatCode": "J38",
"isSold": true,
"createdAt": "2025-03-12T05:00:18.258Z"
}