Apr
4
Sun
International Russel Finals
8:56 AM
Council Bluffs Stadium
From GBP223.26
tickets / #75
8:56 AM
Council Bluffs Stadium
From GBP223.26
curl -sS \
"https://example-data.com/api/v1/tickets/75" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/75"
);
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/75"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/75"
)
ticket = res.json() {
"id": 75,
"eventName": "International Russel Finals",
"venue": "Council Bluffs Stadium",
"eventAt": "2027-04-04T08:56:27.504Z",
"type": "vip",
"price": 223.26,
"currency": "GBP",
"sectionCode": "D2",
"seatCode": "G11",
"isSold": false,
"createdAt": "2027-01-12T08:56:27.504Z"
}