Nov
21
Fri
Grand Klocko Summit
10:02 PM
West Aidenburgh Concert Hall
From USD547.64
tickets / #201
10:02 PM
West Aidenburgh Concert Hall
From USD547.64
curl -sS \
"https://example-data.com/api/v1/tickets/201" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/201"
);
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/201"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/201"
)
ticket = res.json() {
"id": 201,
"eventName": "Grand Klocko Summit",
"venue": "West Aidenburgh Concert Hall",
"eventAt": "2025-11-21T22:02:13.248Z",
"type": "reserved",
"price": 547.64,
"currency": "USD",
"sectionCode": "A2",
"seatCode": "F17",
"isSold": true,
"createdAt": "2025-08-21T22:02:13.248Z"
}