Dec
8
Tue
National Stark Championship
2:34 AM
East Kara Auditorium
From USD394.64
tickets / #34
2:34 AM
East Kara Auditorium
From USD394.64
curl -sS \
"https://example-data.com/api/v1/tickets/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/34"
);
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/34"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/34"
)
ticket = res.json() {
"id": 34,
"eventName": "National Stark Championship",
"venue": "East Kara Auditorium",
"eventAt": "2026-12-08T02:34:22.165Z",
"type": "general",
"price": 394.64,
"currency": "USD",
"sectionCode": "D2",
"seatCode": null,
"isSold": false,
"createdAt": "2026-11-16T02:34:22.165Z"
}