Mar
17
Tue
The Swift Exhibition
12:47 PM
Bethboro Concert Hall
From USD 752.33
Overview
tickets / #222
12:47 PM
Bethboro Concert Hall
From USD 752.33
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/222" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/222" ); 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/222"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/222"
)
ticket = res.json() Response
{
"id": 222,
"eventName": "The Swift Exhibition",
"venue": "Bethboro Concert Hall",
"eventAt": "2026-03-17T12:47:01.264Z",
"type": "standing",
"price": 752.33,
"currency": "USD",
"sectionCode": "C2",
"seatCode": null,
"isSold": true,
"createdAt": "2025-12-04T12:47:01.264Z"
}