example-data.com

tickets / #225

Mar
5
Fri

Grand Yundt Championship

1:41 AM

East Saultown Convention Center

From CAD615.73

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/225"
)
ticket = res.json()
{
  "id": 225,
  "eventName": "Grand Yundt Championship",
  "venue": "East Saultown Convention Center",
  "eventAt": "2027-03-05T01:41:18.842Z",
  "type": "balcony",
  "price": 615.73,
  "currency": "CAD",
  "sectionCode": "D2",
  "seatCode": "G49",
  "isSold": true,
  "createdAt": "2027-01-29T01:41:18.842Z"
}
Draftbit