Apr
3
Fri
World Crona Championship
11:48 AM
Antoinetteview Arena
From USD 248.85
Overview
tickets / #45
11:48 AM
Antoinetteview Arena
From USD 248.85
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/45" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/45" ); const ticket = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tickets.d.ts https://example-data.com/types/tickets.d.ts
import type { Ticket } from "./types/tickets";
const res = await fetch(
"https://example-data.com/api/v1/tickets/45"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/45"
)
ticket = res.json() Response
{
"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"
}