example-data.com

tickets / #235

Oct
16
Thu

Grand Mueller Concert

6:02 PM

New Jeanfurt Stadium

From EUR753.52

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/235"
)
ticket = res.json()
{
  "id": 235,
  "eventName": "Grand Mueller Concert",
  "venue": "New Jeanfurt Stadium",
  "eventAt": "2025-10-16T18:02:37.302Z",
  "type": "standing",
  "price": 753.52,
  "currency": "EUR",
  "sectionCode": "C1",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-07-28T18:02:37.302Z"
}
Draftbit