example-data.com

tickets / #53

Jul
22
Tue

National Nikolaus Summit

8:02 PM

East Katarina Stadium

From EUR912.57

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/53"
)
ticket = res.json()
{
  "id": 53,
  "eventName": "National Nikolaus Summit",
  "venue": "East Katarina Stadium",
  "eventAt": "2025-07-22T20:02:44.342Z",
  "type": "general",
  "price": 912.57,
  "currency": "EUR",
  "sectionCode": "VIP",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-05-16T20:02:44.342Z"
}
Draftbit