example-data.com

tickets / #32

Mar
6
Fri

The Kohler Finals

12:04 PM

O'Harashire Theater

From MXN118.60

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/32"
)
ticket = res.json()
{
  "id": 32,
  "eventName": "The Kohler Finals",
  "venue": "O'Harashire Theater",
  "eventAt": "2026-03-06T12:04:33.282Z",
  "type": "vip",
  "price": 118.6,
  "currency": "MXN",
  "sectionCode": "A1",
  "seatCode": "F13",
  "isSold": true,
  "createdAt": "2026-01-09T12:04:33.282Z"
}
Draftbit