Aug
12
Tue
Grand Hirthe Finals
6:33 PM
Lavinabury Amphitheater
From GBP850.67
tickets / #71
6:33 PM
Lavinabury Amphitheater
From GBP850.67
curl -sS \
"https://example-data.com/api/v1/tickets/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/71"
);
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/71"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/71"
)
ticket = res.json() {
"id": 71,
"eventName": "Grand Hirthe Finals",
"venue": "Lavinabury Amphitheater",
"eventAt": "2025-08-12T18:33:18.772Z",
"type": "reserved",
"price": 850.67,
"currency": "GBP",
"sectionCode": "B1",
"seatCode": "R10",
"isSold": true,
"createdAt": "2025-05-04T18:33:18.772Z"
}