example-data.com

tickets / #168

Sep
26
Sat

Grand Dare Gala

3:41 AM

Shawnee Pavilion

From AUD683.76

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/168"
)
ticket = res.json()
{
  "id": 168,
  "eventName": "Grand Dare Gala",
  "venue": "Shawnee Pavilion",
  "eventAt": "2026-09-26T03:41:04.131Z",
  "type": "vip",
  "price": 683.76,
  "currency": "AUD",
  "sectionCode": "D1",
  "seatCode": "R42",
  "isSold": false,
  "createdAt": "2026-04-29T03:41:04.131Z"
}
Draftbit