example-data.com

tickets / #153

May
11
Mon

National Ernser Exhibition

8:20 AM

West Kara Stadium

From GBP615.12

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/153"
)
ticket = res.json()
{
  "id": 153,
  "eventName": "National Ernser Exhibition",
  "venue": "West Kara Stadium",
  "eventAt": "2026-05-11T08:20:53.749Z",
  "type": "balcony",
  "price": 615.12,
  "currency": "GBP",
  "sectionCode": "B2",
  "seatCode": "Y28",
  "isSold": true,
  "createdAt": "2026-04-15T08:20:53.749Z"
}
Draftbit