example-data.com

tickets / #177

Jul
1
Wed

Ultimate Homenick Festival

6:31 AM

Palm Desert Amphitheater

From EUR727.52

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/177"
)
ticket = res.json()
{
  "id": 177,
  "eventName": "Ultimate Homenick Festival",
  "venue": "Palm Desert Amphitheater",
  "eventAt": "2026-07-01T06:31:11.985Z",
  "type": "vip",
  "price": 727.52,
  "currency": "EUR",
  "sectionCode": "D2",
  "seatCode": "O22",
  "isSold": true,
  "createdAt": "2026-03-24T06:31:11.985Z"
}
Draftbit