example-data.com

tickets / #183

Aug
21
Fri

The Rempel-Stokes Finals

8:18 PM

New Lester Auditorium

From GBP809.74

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/183"
)
ticket = res.json()
{
  "id": 183,
  "eventName": "The Rempel-Stokes Finals",
  "venue": "New Lester Auditorium",
  "eventAt": "2026-08-21T20:18:51.225Z",
  "type": "standing",
  "price": 809.74,
  "currency": "GBP",
  "sectionCode": "B1",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2026-04-06T20:18:51.225Z"
}
Draftbit