example-data.com

tickets / #170

May
15
Fri

National Macejkovic Open

7:10 AM

West Jordanview Stadium

From CAD810.16

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/170"
)
ticket = res.json()
{
  "id": 170,
  "eventName": "National Macejkovic Open",
  "venue": "West Jordanview Stadium",
  "eventAt": "2026-05-15T07:10:13.802Z",
  "type": "general",
  "price": 810.16,
  "currency": "CAD",
  "sectionCode": "C1",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2026-02-10T07:10:13.802Z"
}
Draftbit