example-data.com

tickets / #108

Aug
14
Thu

The Douglas Tour

5:26 AM

Kubtown Pavilion

From MXN955.56

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/108"
)
ticket = res.json()
{
  "id": 108,
  "eventName": "The Douglas Tour",
  "venue": "Kubtown Pavilion",
  "eventAt": "2025-08-14T05:26:12.079Z",
  "type": "reserved",
  "price": 955.56,
  "currency": "MXN",
  "sectionCode": "C2",
  "seatCode": "R28",
  "isSold": true,
  "createdAt": "2025-06-22T05:26:12.079Z"
}
Draftbit