Mar
12
Thu
The Luettgen-Hilpert Show
8:48 AM
New Mariane Convention Center
From EUR 485.07
Overview
tickets / #213
8:48 AM
New Mariane Convention Center
From EUR 485.07
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/213" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/213" ); 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/213"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/213"
)
ticket = res.json() Response
{
"id": 213,
"eventName": "The Luettgen-Hilpert Show",
"venue": "New Mariane Convention Center",
"eventAt": "2026-03-12T08:48:55.900Z",
"type": "vip",
"price": 485.07,
"currency": "EUR",
"sectionCode": "C2",
"seatCode": "V44",
"isSold": false,
"createdAt": "2025-12-31T08:48:55.900Z"
}