example-data.com

tickets / #88

Aug
16
Sun

Annual Will Finals

2:55 PM

Lubbock Auditorium

From JPY650.10

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/88"
)
ticket = res.json()
{
  "id": 88,
  "eventName": "Annual Will Finals",
  "venue": "Lubbock Auditorium",
  "eventAt": "2026-08-16T14:55:42.628Z",
  "type": "reserved",
  "price": 650.1,
  "currency": "JPY",
  "sectionCode": "VIP",
  "seatCode": "X44",
  "isSold": true,
  "createdAt": "2026-04-23T14:55:42.628Z"
}
Draftbit