example-data.com

tickets / #167

Aug
31
Mon

Annual Reilly Open

4:54 PM

Breitenbergburgh Auditorium

From JPY543.39

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/167"
)
ticket = res.json()
{
  "id": 167,
  "eventName": "Annual Reilly Open",
  "venue": "Breitenbergburgh Auditorium",
  "eventAt": "2026-08-31T16:54:18.958Z",
  "type": "vip",
  "price": 543.39,
  "currency": "JPY",
  "sectionCode": "D1",
  "seatCode": "W9",
  "isSold": true,
  "createdAt": "2026-08-14T16:54:18.958Z"
}
Draftbit