example-data.com

tickets / #19

Feb
6
Sat

Grand Senger Show

10:33 PM

West Thomasstead Stadium

From USD427.62

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/19"
)
ticket = res.json()
{
  "id": 19,
  "eventName": "Grand Senger Show",
  "venue": "West Thomasstead Stadium",
  "eventAt": "2027-02-06T22:33:31.638Z",
  "type": "general",
  "price": 427.62,
  "currency": "USD",
  "sectionCode": "D2",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2026-11-19T22:33:31.638Z"
}
Draftbit