Feb
19
Fri
World Schaefer Concert
8:39 PM
Bradenton Amphitheater
From USD677.42
tickets / #16
8:39 PM
Bradenton Amphitheater
From USD677.42
curl -sS \
"https://example-data.com/api/v1/tickets/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/16"
);
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/16"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/16"
)
ticket = res.json() {
"id": 16,
"eventName": "World Schaefer Concert",
"venue": "Bradenton Amphitheater",
"eventAt": "2027-02-19T20:39:13.752Z",
"type": "vip",
"price": 677.42,
"currency": "USD",
"sectionCode": "B2",
"seatCode": "C3",
"isSold": true,
"createdAt": "2026-12-07T20:39:13.752Z"
}