example-data.com

tickets / #219

Sep
15
Mon

Annual Frami Summit

4:13 PM

New Cruz Arena

From AUD349.28

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/219"
)
ticket = res.json()
{
  "id": 219,
  "eventName": "Annual Frami Summit",
  "venue": "New Cruz Arena",
  "eventAt": "2025-09-15T16:13:10.363Z",
  "type": "vip",
  "price": 349.28,
  "currency": "AUD",
  "sectionCode": "A2",
  "seatCode": "O33",
  "isSold": true,
  "createdAt": "2025-08-11T16:13:10.363Z"
}
Draftbit