example-data.com

tickets / #50

Jan
22
Thu

Annual Erdman Festival

8:15 AM

New Nicktown Amphitheater

From EUR103.80

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/50"
)
ticket = res.json()
{
  "id": 50,
  "eventName": "Annual Erdman Festival",
  "venue": "New Nicktown Amphitheater",
  "eventAt": "2026-01-22T08:15:27.576Z",
  "type": "standing",
  "price": 103.8,
  "currency": "EUR",
  "sectionCode": "FLOOR",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-12-05T08:15:27.576Z"
}
Draftbit