example-data.com

tickets / #92

Oct
10
Sat

National Gleichner-Cruickshank Concert

6:59 PM

Lynchburg Concert Hall

From AUD900.92

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/92"
)
ticket = res.json()
{
  "id": 92,
  "eventName": "National Gleichner-Cruickshank Concert",
  "venue": "Lynchburg Concert Hall",
  "eventAt": "2026-10-10T18:59:38.332Z",
  "type": "general",
  "price": 900.92,
  "currency": "AUD",
  "sectionCode": "A2",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2026-09-26T18:59:38.332Z"
}
Draftbit