example-data.com

tickets / #181

Jul
7
Tue

Ultimate Osinski Summit

10:18 PM

Lake Arastad Auditorium

From USD265.96

Component variants

curl -sS \
  "https://example-data.com/api/v1/tickets/181" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tickets/181"
);
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/181"
);
const ticket = (await res.json()) as Ticket;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tickets/181"
)
ticket = res.json()
{
  "id": 181,
  "eventName": "Ultimate Osinski Summit",
  "venue": "Lake Arastad Auditorium",
  "eventAt": "2026-07-07T22:18:44.836Z",
  "type": "vip",
  "price": 265.96,
  "currency": "USD",
  "sectionCode": "FLOOR",
  "seatCode": "M37",
  "isSold": true,
  "createdAt": "2026-05-22T22:18:44.836Z"
}
Draftbit