Oct
5
Sun
National O'Connell Tour
7:42 AM
New Paoloburgh Stadium
From USD562.97
tickets / #117
7:42 AM
New Paoloburgh Stadium
From USD562.97
curl -sS \
"https://example-data.com/api/v1/tickets/117" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/117"
);
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/117"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/117"
)
ticket = res.json() {
"id": 117,
"eventName": "National O'Connell Tour",
"venue": "New Paoloburgh Stadium",
"eventAt": "2025-10-05T07:42:19.993Z",
"type": "standing",
"price": 562.97,
"currency": "USD",
"sectionCode": "C2",
"seatCode": null,
"isSold": false,
"createdAt": "2025-04-26T07:42:19.993Z"
}