example-data.com

tickets / #229

Jul
21
Tue

International Hilpert Gala

4:39 PM

South Cristian Convention Center

From GBP472.58

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/229"
)
ticket = res.json()
{
  "id": 229,
  "eventName": "International Hilpert Gala",
  "venue": "South Cristian Convention Center",
  "eventAt": "2026-07-21T16:39:09.306Z",
  "type": "reserved",
  "price": 472.58,
  "currency": "GBP",
  "sectionCode": "GA",
  "seatCode": "O25",
  "isSold": false,
  "createdAt": "2026-04-28T16:39:09.306Z"
}
Draftbit