Mar
17
Tue
The Swift Exhibition
12:47 PM
Bethboro Concert Hall
From USD752.33
tickets / #222
12:47 PM
Bethboro Concert Hall
From USD752.33
curl -sS \
"https://example-data.com/api/v1/tickets/222" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/222"
);
const ticket = await res.json();import type { Ticket } from "https://example-data.com/types/tickets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tickets/222"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/222"
)
ticket = res.json() {
"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"
}