Jun
10
Tue
Grand O'Conner-Medhurst Festival
5:07 PM
Woodbury Amphitheater
From CAD 232.60
Overview
tickets / #133
5:07 PM
Woodbury Amphitheater
From CAD 232.60
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/133" ); 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/133"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/133"
)
ticket = res.json() Response
{
"id": 133,
"eventName": "Grand O'Conner-Medhurst Festival",
"venue": "Woodbury Amphitheater",
"eventAt": "2025-06-10T17:07:13.925Z",
"type": "standing",
"price": 232.6,
"currency": "CAD",
"sectionCode": "B2",
"seatCode": null,
"isSold": false,
"createdAt": "2025-03-30T17:07:13.925Z"
}