Feb
2
Mon
Ultimate Konopelski Show
11:43 AM
Torphyshire Stadium
From AUD 713.48
Overview
tickets / #135
11:43 AM
Torphyshire Stadium
From AUD 713.48
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/135" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/135" ); 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/135"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/135"
)
ticket = res.json() Response
{
"id": 135,
"eventName": "Ultimate Konopelski Show",
"venue": "Torphyshire Stadium",
"eventAt": "2026-02-02T11:43:32.032Z",
"type": "reserved",
"price": 713.48,
"currency": "AUD",
"sectionCode": "C2",
"seatCode": "V38",
"isSold": false,
"createdAt": "2025-12-01T11:43:32.032Z"
}