Dec
12
Sat
Classic Connelly Finals
3:40 AM
Fort Desireehaven Stadium
From EUR921.22
tickets / #79
3:40 AM
Fort Desireehaven Stadium
From EUR921.22
curl -sS \
"https://example-data.com/api/v1/tickets/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/79"
);
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/79"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/79"
)
ticket = res.json() {
"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"
}