Jan
4
Sun
Ultimate Wyman Championship
12:34 PM
South Roderick Amphitheater
From USD858.06
tickets / #239
12:34 PM
South Roderick Amphitheater
From USD858.06
curl -sS \
"https://example-data.com/api/v1/tickets/239" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/239"
);
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/239"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/239"
)
ticket = res.json() {
"id": 239,
"eventName": "Ultimate Wyman Championship",
"venue": "South Roderick Amphitheater",
"eventAt": "2026-01-04T12:34:02.510Z",
"type": "balcony",
"price": 858.06,
"currency": "USD",
"sectionCode": "FLOOR",
"seatCode": "T47",
"isSold": false,
"createdAt": "2025-09-01T12:34:02.510Z"
}