Aug
26
Wed
International Lynch Championship
7:06 AM
Franeyville Convention Center
From USD 544.43
Overview
tickets / #96
7:06 AM
Franeyville Convention Center
From USD 544.43
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/96" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/96" ); 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/96"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/96"
)
ticket = res.json() Response
{
"id": 96,
"eventName": "International Lynch Championship",
"venue": "Franeyville Convention Center",
"eventAt": "2026-08-26T07:06:22.869Z",
"type": "balcony",
"price": 544.43,
"currency": "USD",
"sectionCode": "C2",
"seatCode": "I48",
"isSold": false,
"createdAt": "2026-07-01T07:06:22.869Z"
}