Apr
10
Fri
National Greenholt Festival
11:48 AM
New Kendrick Stadium
From EUR 447.00
Overview
tickets / #278
11:48 AM
New Kendrick Stadium
From EUR 447.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/278" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/278" ); 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/278"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/278"
)
ticket = res.json() Response
{
"id": 278,
"eventName": "National Greenholt Festival",
"venue": "New Kendrick Stadium",
"eventAt": "2026-04-10T11:48:50.136Z",
"type": "vip",
"price": 447,
"currency": "EUR",
"sectionCode": "D2",
"seatCode": "O29",
"isSold": true,
"createdAt": "2026-03-18T11:48:50.136Z"
}