Aug
25
Tue
Grand Hansen Exhibition
4:30 AM
New Arno Amphitheater
From GBP 933.48
Overview
tickets / #3
4:30 AM
New Arno Amphitheater
From GBP 933.48
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/3" ); 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/3"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/3"
)
ticket = res.json() Response
{
"id": 3,
"eventName": "Grand Hansen Exhibition",
"venue": "New Arno Amphitheater",
"eventAt": "2026-08-25T04:30:05.972Z",
"type": "standing",
"price": 933.48,
"currency": "GBP",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": true,
"createdAt": "2026-06-04T04:30:05.972Z"
}