example-data.com

tickets / #123

Jul
21
Tue

National Beier Championship

12:44 PM

Ezraview Theater

From JPY609.68

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/123"
)
ticket = res.json()
{
  "id": 123,
  "eventName": "National Beier Championship",
  "venue": "Ezraview Theater",
  "eventAt": "2026-07-21T12:44:17.330Z",
  "type": "balcony",
  "price": 609.68,
  "currency": "JPY",
  "sectionCode": "A2",
  "seatCode": "T48",
  "isSold": true,
  "createdAt": "2026-05-22T12:44:17.330Z"
}
Draftbit