Sep
7
Sun
World Pollich Concert
9:19 AM
Walshview Pavilion
From EUR 922.24
Overview
tickets / #28
9:19 AM
Walshview Pavilion
From EUR 922.24
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/28" ); 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/28"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/28"
)
ticket = res.json() Response
{
"id": 28,
"eventName": "World Pollich Concert",
"venue": "Walshview Pavilion",
"eventAt": "2025-09-07T09:19:07.877Z",
"type": "general",
"price": 922.24,
"currency": "EUR",
"sectionCode": "B2",
"seatCode": null,
"isSold": true,
"createdAt": "2025-07-13T09:19:07.877Z"
}