Sep
26
Sat
Grand Dare Gala
3:41 AM
Shawnee Pavilion
From AUD 683.76
Overview
tickets / #168
3:41 AM
Shawnee Pavilion
From AUD 683.76
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/168" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/168" ); 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/168"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/168"
)
ticket = res.json() Response
{
"id": 168,
"eventName": "Grand Dare Gala",
"venue": "Shawnee Pavilion",
"eventAt": "2026-09-26T03:41:04.131Z",
"type": "vip",
"price": 683.76,
"currency": "AUD",
"sectionCode": "D1",
"seatCode": "R42",
"isSold": false,
"createdAt": "2026-04-29T03:41:04.131Z"
}