Jan
12
Mon
Grand Witting Championship
5:25 PM
Fort Pierce Stadium
From EUR110.32
tickets / #211
5:25 PM
Fort Pierce Stadium
From EUR110.32
curl -sS \
"https://example-data.com/api/v1/tickets/211" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/211"
);
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/211"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/211"
)
ticket = res.json() {
"id": 211,
"eventName": "Grand Witting Championship",
"venue": "Fort Pierce Stadium",
"eventAt": "2026-01-12T17:25:54.561Z",
"type": "balcony",
"price": 110.32,
"currency": "EUR",
"sectionCode": "VIP",
"seatCode": "F37",
"isSold": true,
"createdAt": "2025-09-15T17:25:54.561Z"
}