Apr
4
Sun
International Russel Finals
8:56 AM
Council Bluffs Stadium
From GBP 223.26
Overview
tickets / #75
8:56 AM
Council Bluffs Stadium
From GBP 223.26
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/75" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/75" ); const ticket = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tickets.d.ts https://example-data.com/types/tickets.d.ts
import type { Ticket } from "./types/tickets";
const res = await fetch(
"https://example-data.com/api/v1/tickets/75"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/75"
)
ticket = res.json() Response
{
"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"
}