Sep
5
Sat
The Legros Show
9:05 PM
Cristinaboro Auditorium
From CAD67.11
tickets / #119
9:05 PM
Cristinaboro Auditorium
From CAD67.11
curl -sS \
"https://example-data.com/api/v1/tickets/119" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/119"
);
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/119"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/119"
)
ticket = res.json() {
"id": 119,
"eventName": "The Legros Show",
"venue": "Cristinaboro Auditorium",
"eventAt": "2026-09-05T21:05:32.661Z",
"type": "reserved",
"price": 67.11,
"currency": "CAD",
"sectionCode": "GA",
"seatCode": "Z32",
"isSold": true,
"createdAt": "2026-05-27T21:05:32.661Z"
}