example-data.com

tickets / #152

Apr
19
Sun

International Von Exhibition

12:27 PM

Port Emie Pavilion

From JPY548.09

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/152"
)
ticket = res.json()
{
  "id": 152,
  "eventName": "International Von Exhibition",
  "venue": "Port Emie Pavilion",
  "eventAt": "2026-04-19T12:27:03.828Z",
  "type": "reserved",
  "price": 548.09,
  "currency": "JPY",
  "sectionCode": "VIP",
  "seatCode": "Y49",
  "isSold": true,
  "createdAt": "2026-01-11T12:27:03.828Z"
}
Draftbit