Apr
2
Fri
World Wisoky Gala
6:56 AM
Port Keyonton Amphitheater
From CAD 152.79
Overview
tickets / #282
6:56 AM
Port Keyonton Amphitheater
From CAD 152.79
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/282" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/282" ); 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/282"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/282"
)
ticket = res.json() Response
{
"id": 282,
"eventName": "World Wisoky Gala",
"venue": "Port Keyonton Amphitheater",
"eventAt": "2027-04-02T06:56:23.456Z",
"type": "balcony",
"price": 152.79,
"currency": "CAD",
"sectionCode": "FLOOR",
"seatCode": "I9",
"isSold": false,
"createdAt": "2026-11-16T06:56:23.456Z"
}