Oct
30
Fri
The Hayes-Kemmer Tour
11:13 PM
Bergstromport Amphitheater
From GBP880.99
tickets / #70
11:13 PM
Bergstromport Amphitheater
From GBP880.99
curl -sS \
"https://example-data.com/api/v1/tickets/70" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/70"
);
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/70"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/70"
)
ticket = res.json() {
"id": 70,
"eventName": "The Hayes-Kemmer Tour",
"venue": "Bergstromport Amphitheater",
"eventAt": "2026-10-30T23:13:49.600Z",
"type": "vip",
"price": 880.99,
"currency": "GBP",
"sectionCode": "C2",
"seatCode": "N20",
"isSold": false,
"createdAt": "2026-05-10T23:13:49.600Z"
}