Oct
30
Fri
Annual Goyette Championship
11:47 AM
Arlington Amphitheater
From USD507.07
tickets / #195
11:47 AM
Arlington Amphitheater
From USD507.07
curl -sS \
"https://example-data.com/api/v1/tickets/195" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/195"
);
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/195"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/195"
)
ticket = res.json() {
"id": 195,
"eventName": "Annual Goyette Championship",
"venue": "Arlington Amphitheater",
"eventAt": "2026-10-30T11:47:17.887Z",
"type": "balcony",
"price": 507.07,
"currency": "USD",
"sectionCode": "B1",
"seatCode": "P8",
"isSold": true,
"createdAt": "2026-10-16T11:47:17.887Z"
}