example-data.com

tickets / #189

Jun
20
Sat

World Rippin Gala

9:16 PM

West Delphacester Stadium

From AUD53.48

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/189"
)
ticket = res.json()
{
  "id": 189,
  "eventName": "World Rippin Gala",
  "venue": "West Delphacester Stadium",
  "eventAt": "2026-06-20T21:16:58.015Z",
  "type": "balcony",
  "price": 53.48,
  "currency": "AUD",
  "sectionCode": "C2",
  "seatCode": "R34",
  "isSold": false,
  "createdAt": "2026-03-28T21:16:58.015Z"
}
Draftbit