example-data.com

tickets / #29

Jul
14
Mon

World O'Kon Gala

9:48 AM

South Mohammadside Pavilion

From JPY884.96

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/29"
)
ticket = res.json()
{
  "id": 29,
  "eventName": "World O'Kon Gala",
  "venue": "South Mohammadside Pavilion",
  "eventAt": "2025-07-14T09:48:50.927Z",
  "type": "standing",
  "price": 884.96,
  "currency": "JPY",
  "sectionCode": "A1",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-06-26T09:48:50.927Z"
}
Draftbit