Aug
26
Wed
International Lynch Championship
7:06 AM
Franeyville Convention Center
From USD544.43
tickets / #96
7:06 AM
Franeyville Convention Center
From USD544.43
curl -sS \
"https://example-data.com/api/v1/tickets/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/96"
);
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/96"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/96"
)
ticket = res.json() {
"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"
}