example-data.com

tickets / #182

Mar
20
Sat

Grand Huels Open

10:41 PM

West Murray Pavilion

From JPY782.44

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/182"
)
ticket = res.json()
{
  "id": 182,
  "eventName": "Grand Huels Open",
  "venue": "West Murray Pavilion",
  "eventAt": "2027-03-20T22:41:50.557Z",
  "type": "vip",
  "price": 782.44,
  "currency": "JPY",
  "sectionCode": "FLOOR",
  "seatCode": "Y36",
  "isSold": false,
  "createdAt": "2026-10-25T22:41:50.557Z"
}
Draftbit