Apr
3
Fri
World Crona Championship
11:48 AM
Antoinetteview Arena
From USD248.85
tickets / #45
11:48 AM
Antoinetteview Arena
From USD248.85
curl -sS \
"https://example-data.com/api/v1/tickets/45" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/45"
);
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/45"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/45"
)
ticket = res.json() {
"id": 45,
"eventName": "World Crona Championship",
"venue": "Antoinetteview Arena",
"eventAt": "2026-04-03T11:48:12.633Z",
"type": "reserved",
"price": 248.85,
"currency": "USD",
"sectionCode": "A2",
"seatCode": "N47",
"isSold": true,
"createdAt": "2025-10-27T11:48:12.633Z"
}