example-data.com

tickets / #81

Aug
13
Thu

National Emmerich Gala

10:48 PM

Lindfort Convention Center

From GBP331.55

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/81"
)
ticket = res.json()
{
  "id": 81,
  "eventName": "National Emmerich Gala",
  "venue": "Lindfort Convention Center",
  "eventAt": "2026-08-13T22:48:12.887Z",
  "type": "standing",
  "price": 331.55,
  "currency": "GBP",
  "sectionCode": "D1",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2026-07-11T22:48:12.887Z"
}
Draftbit