Nov
8
Sun
The Wiza Show
7:27 PM
New Phyllis Arena
From GBP 860.18
Overview
tickets / #112
7:27 PM
New Phyllis Arena
From GBP 860.18
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/112" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/112" ); 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/112"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/112"
)
ticket = res.json() Response
{
"id": 112,
"eventName": "The Wiza Show",
"venue": "New Phyllis Arena",
"eventAt": "2026-11-08T19:27:55.464Z",
"type": "reserved",
"price": 860.18,
"currency": "GBP",
"sectionCode": "C1",
"seatCode": "G12",
"isSold": true,
"createdAt": "2026-10-20T19:27:55.464Z"
}