Oct
30
Thu
Grand Daniel Open
12:00 AM
Brandonhaven Convention Center
From CAD 397.85
Overview
tickets / #262
12:00 AM
Brandonhaven Convention Center
From CAD 397.85
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/262" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/262" ); 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/262"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/262"
)
ticket = res.json() Response
{
"id": 262,
"eventName": "Grand Daniel Open",
"venue": "Brandonhaven Convention Center",
"eventAt": "2025-10-30T00:00:27.101Z",
"type": "standing",
"price": 397.85,
"currency": "CAD",
"sectionCode": "D1",
"seatCode": null,
"isSold": true,
"createdAt": "2025-09-01T00:00:27.101Z"
}