Jun
10
Tue
Grand O'Conner-Medhurst Festival
5:07 PM
Woodbury Amphitheater
From CAD232.60
tickets / #133
5:07 PM
Woodbury Amphitheater
From CAD232.60
curl -sS \
"https://example-data.com/api/v1/tickets/133" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/133"
);
const ticket = await res.json();import type { Ticket } from "https://example-data.com/types/tickets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tickets/133"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/133"
)
ticket = res.json() {
"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"
}