example-data.com

tickets / #69

Dec
17
Wed

National Leffler Open

7:29 AM

Fort Nicklaus Arena

From JPY546.32

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/69"
)
ticket = res.json()
{
  "id": 69,
  "eventName": "National Leffler Open",
  "venue": "Fort Nicklaus Arena",
  "eventAt": "2025-12-17T07:29:26.200Z",
  "type": "vip",
  "price": 546.32,
  "currency": "JPY",
  "sectionCode": "GA",
  "seatCode": "L33",
  "isSold": true,
  "createdAt": "2025-10-12T07:29:26.200Z"
}
Draftbit