example-data.com

tickets / #175

Jul
22
Wed

World Tremblay Festival

5:38 AM

Vitacester Concert Hall

From USD701.19

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/175"
)
ticket = res.json()
{
  "id": 175,
  "eventName": "World Tremblay Festival",
  "venue": "Vitacester Concert Hall",
  "eventAt": "2026-07-22T05:38:32.031Z",
  "type": "standing",
  "price": 701.19,
  "currency": "USD",
  "sectionCode": "C1",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2026-01-29T05:38:32.031Z"
}
Draftbit