Jun
27
Fri
Ultimate Zemlak Exhibition
7:03 AM
Reyberg Arena
From CAD 856.72
Overview
tickets / #207
7:03 AM
Reyberg Arena
From CAD 856.72
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/207" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/207" ); 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/207"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/207"
)
ticket = res.json() Response
{
"id": 207,
"eventName": "Ultimate Zemlak Exhibition",
"venue": "Reyberg Arena",
"eventAt": "2025-06-27T07:03:09.437Z",
"type": "balcony",
"price": 856.72,
"currency": "CAD",
"sectionCode": "A2",
"seatCode": "Q22",
"isSold": false,
"createdAt": "2025-03-21T07:03:09.437Z"
}