Feb
19
Fri
World Schaefer Concert
8:39 PM
Bradenton Amphitheater
From USD 677.42
Overview
tickets / #16
8:39 PM
Bradenton Amphitheater
From USD 677.42
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/16" ); 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/16"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/16"
)
ticket = res.json() Response
{
"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"
}