example-data.com

tickets / #120

Jan
21
Wed

Ultimate Predovic Festival

2:39 PM

Kuhnburgh Theater

From USD139.96

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/120"
)
ticket = res.json()
{
  "id": 120,
  "eventName": "Ultimate Predovic Festival",
  "venue": "Kuhnburgh Theater",
  "eventAt": "2026-01-21T14:39:02.818Z",
  "type": "general",
  "price": 139.96,
  "currency": "USD",
  "sectionCode": "FLOOR",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2025-10-09T14:39:02.818Z"
}
Draftbit