Jul
30
Wed
International Klein Concert
12:22 AM
Colefurt Pavilion
From EUR581.60
tickets / #148
12:22 AM
Colefurt Pavilion
From EUR581.60
curl -sS \
"https://example-data.com/api/v1/tickets/148" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/148"
);
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/148"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/148"
)
ticket = res.json() {
"id": 148,
"eventName": "International Klein Concert",
"venue": "Colefurt Pavilion",
"eventAt": "2025-07-30T00:22:19.945Z",
"type": "reserved",
"price": 581.6,
"currency": "EUR",
"sectionCode": "B1",
"seatCode": "B12",
"isSold": false,
"createdAt": "2025-05-07T00:22:19.945Z"
}