Aug
4
Mon
National Heathcote-Nicolas Gala
7:49 AM
North Emmanuelle Auditorium
From USD 353.76
Overview
tickets / #31
7:49 AM
North Emmanuelle Auditorium
From USD 353.76
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/31" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/31" ); 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/31"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/31"
)
ticket = res.json() Response
{
"id": 31,
"eventName": "National Heathcote-Nicolas Gala",
"venue": "North Emmanuelle Auditorium",
"eventAt": "2025-08-04T07:49:20.388Z",
"type": "standing",
"price": 353.76,
"currency": "USD",
"sectionCode": "A1",
"seatCode": null,
"isSold": true,
"createdAt": "2025-02-26T07:49:20.388Z"
}