example-data.com

tickets / #13

Sep
15
Tue

Grand Kirlin Gala

7:07 PM

Ocieside Amphitheater

From MXN929.55

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/13"
)
ticket = res.json()
{
  "id": 13,
  "eventName": "Grand Kirlin Gala",
  "venue": "Ocieside Amphitheater",
  "eventAt": "2026-09-15T19:07:13.152Z",
  "type": "balcony",
  "price": 929.55,
  "currency": "MXN",
  "sectionCode": "A2",
  "seatCode": "Y19",
  "isSold": true,
  "createdAt": "2026-06-22T19:07:13.152Z"
}
Draftbit