Jan
22
Thu
Annual Erdman Festival
8:15 AM
New Nicktown Amphitheater
From EUR 103.80
Overview
tickets / #50
8:15 AM
New Nicktown Amphitheater
From EUR 103.80
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/50" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/50" ); 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/50"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/50"
)
ticket = res.json() Response
{
"id": 50,
"eventName": "Annual Erdman Festival",
"venue": "New Nicktown Amphitheater",
"eventAt": "2026-01-22T08:15:27.576Z",
"type": "standing",
"price": 103.8,
"currency": "EUR",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": false,
"createdAt": "2025-12-05T08:15:27.576Z"
}