May
11
Mon
National Ernser Exhibition
8:20 AM
West Kara Stadium
From GBP 615.12
Overview
tickets / #153
8:20 AM
West Kara Stadium
From GBP 615.12
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/153" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/153" ); 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/153"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/153"
)
ticket = res.json() Response
{
"id": 153,
"eventName": "National Ernser Exhibition",
"venue": "West Kara Stadium",
"eventAt": "2026-05-11T08:20:53.749Z",
"type": "balcony",
"price": 615.12,
"currency": "GBP",
"sectionCode": "B2",
"seatCode": "Y28",
"isSold": true,
"createdAt": "2026-04-15T08:20:53.749Z"
}