example-data.com

tickets / #209

Dec
14
Sun

National Herzog Concert

1:21 AM

Jurupa Valley Arena

From CAD885.60

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/209"
)
ticket = res.json()
{
  "id": 209,
  "eventName": "National Herzog Concert",
  "venue": "Jurupa Valley Arena",
  "eventAt": "2025-12-14T01:21:20.055Z",
  "type": "standing",
  "price": 885.6,
  "currency": "CAD",
  "sectionCode": "C1",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-09-22T01:21:20.055Z"
}
Draftbit