example-data.com

tickets / #68

Nov
7
Fri

The Legros Open

1:33 AM

Arlington Auditorium

From AUD723.33

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/68"
)
ticket = res.json()
{
  "id": 68,
  "eventName": "The Legros Open",
  "venue": "Arlington Auditorium",
  "eventAt": "2025-11-07T01:33:23.245Z",
  "type": "vip",
  "price": 723.33,
  "currency": "AUD",
  "sectionCode": "FLOOR",
  "seatCode": "E10",
  "isSold": true,
  "createdAt": "2025-06-29T01:33:23.245Z"
}
Draftbit