example-data.com

tickets / #220

Apr
2
Fri

The Weissnat Finals

5:20 AM

South Wellington Stadium

From USD148.85

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/220"
)
ticket = res.json()
{
  "id": 220,
  "eventName": "The Weissnat Finals",
  "venue": "South Wellington Stadium",
  "eventAt": "2027-04-02T05:20:44.651Z",
  "type": "general",
  "price": 148.85,
  "currency": "USD",
  "sectionCode": "GA",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2026-11-16T05:20:44.651Z"
}
Draftbit