Apr
27
Tue
The Feest Open
12:03 PM
Lubowitzhaven Theater
From EUR184.11
tickets / #186
12:03 PM
Lubowitzhaven Theater
From EUR184.11
curl -sS \
"https://example-data.com/api/v1/tickets/186" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/186"
);
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/186"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/186"
)
ticket = res.json() {
"id": 186,
"eventName": "The Feest Open",
"venue": "Lubowitzhaven Theater",
"eventAt": "2027-04-27T12:03:07.118Z",
"type": "balcony",
"price": 184.11,
"currency": "EUR",
"sectionCode": "C1",
"seatCode": "K16",
"isSold": false,
"createdAt": "2027-01-31T12:03:07.118Z"
}