example-data.com

tickets / #187

Jan
28
Thu

Annual McKenzie Festival

2:13 PM

Lake Laurence Auditorium

From MXN708.12

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/187"
)
ticket = res.json()
{
  "id": 187,
  "eventName": "Annual McKenzie Festival",
  "venue": "Lake Laurence Auditorium",
  "eventAt": "2027-01-28T14:13:49.215Z",
  "type": "standing",
  "price": 708.12,
  "currency": "MXN",
  "sectionCode": "B2",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2026-12-07T14:13:49.215Z"
}
Draftbit