Jan
6
Wed
National Murazik Championship
4:11 AM
Mannburgh Amphitheater
From GBP892.38
tickets / #35
4:11 AM
Mannburgh Amphitheater
From GBP892.38
curl -sS \
"https://example-data.com/api/v1/tickets/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/35"
);
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/35"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/35"
)
ticket = res.json() {
"id": 35,
"eventName": "National Murazik Championship",
"venue": "Mannburgh Amphitheater",
"eventAt": "2027-01-06T04:11:14.958Z",
"type": "reserved",
"price": 892.38,
"currency": "GBP",
"sectionCode": "VIP",
"seatCode": "B21",
"isSold": true,
"createdAt": "2026-08-29T04:11:14.958Z"
}