Apr
27
Tue
The Feest Open
12:03 PM
Lubowitzhaven Theater
From EUR 184.11
Overview
tickets / #186
12:03 PM
Lubowitzhaven Theater
From EUR 184.11
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/186" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/186" ); 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/186"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/186"
)
ticket = res.json() Response
{
"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"
}