Oct
13
Tue
National Luettgen Finals
4:32 AM
Orvalshire Stadium
From USD 991.87
Overview
tickets / #90
4:32 AM
Orvalshire Stadium
From USD 991.87
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/90" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/90" ); 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/90"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/90"
)
ticket = res.json() Response
{
"id": 90,
"eventName": "National Luettgen Finals",
"venue": "Orvalshire Stadium",
"eventAt": "2026-10-13T04:32:31.810Z",
"type": "reserved",
"price": 991.87,
"currency": "USD",
"sectionCode": "B2",
"seatCode": "G8",
"isSold": false,
"createdAt": "2026-08-09T04:32:31.810Z"
}