Sep
8
Mon
Annual Stokes Concert
1:39 PM
Haagmouth Convention Center
From USD726.94
tickets / #42
1:39 PM
Haagmouth Convention Center
From USD726.94
curl -sS \
"https://example-data.com/api/v1/tickets/42" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/42"
);
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/42"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/42"
)
ticket = res.json() {
"id": 42,
"eventName": "Annual Stokes Concert",
"venue": "Haagmouth Convention Center",
"eventAt": "2025-09-08T13:39:19.321Z",
"type": "vip",
"price": 726.94,
"currency": "USD",
"sectionCode": "B2",
"seatCode": "Q5",
"isSold": true,
"createdAt": "2025-04-29T13:39:19.321Z"
}