Dec
12
Sat
Classic Connelly Finals
3:40 AM
Fort Desireehaven Stadium
From EUR 921.22
Overview
tickets / #79
3:40 AM
Fort Desireehaven Stadium
From EUR 921.22
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/79" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/79" ); 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/79"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/79"
)
ticket = res.json() Response
{
"id": 79,
"eventName": "Classic Connelly Finals",
"venue": "Fort Desireehaven Stadium",
"eventAt": "2026-12-12T03:40:09.149Z",
"type": "balcony",
"price": 921.22,
"currency": "EUR",
"sectionCode": "A2",
"seatCode": "U28",
"isSold": false,
"createdAt": "2026-09-07T03:40:09.149Z"
}