Jul
11
Sat
Annual Ankunding Exhibition
4:48 AM
Yadirachester Amphitheater
From EUR320.14
tickets / #47
4:48 AM
Yadirachester Amphitheater
From EUR320.14
curl -sS \
"https://example-data.com/api/v1/tickets/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/47"
);
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/47"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/47"
)
ticket = res.json() {
"id": 47,
"eventName": "Annual Ankunding Exhibition",
"venue": "Yadirachester Amphitheater",
"eventAt": "2026-07-11T04:48:11.194Z",
"type": "standing",
"price": 320.14,
"currency": "EUR",
"sectionCode": "D1",
"seatCode": null,
"isSold": false,
"createdAt": "2026-04-25T04:48:11.194Z"
}