example-data.com

tickets / #115

Oct
30
Thu

Annual Tromp Gala

1:35 AM

Lawrence Convention Center

From JPY244.56

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/115"
)
ticket = res.json()
{
  "id": 115,
  "eventName": "Annual Tromp Gala",
  "venue": "Lawrence Convention Center",
  "eventAt": "2025-10-30T01:35:53.403Z",
  "type": "standing",
  "price": 244.56,
  "currency": "JPY",
  "sectionCode": "D1",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-10-14T01:35:53.403Z"
}
Draftbit