example-data.com

tickets / #233

Sep
13
Sun

National Conroy Festival

3:48 PM

Port Alishaboro Amphitheater

From EUR234.85

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/233"
)
ticket = res.json()
{
  "id": 233,
  "eventName": "National Conroy Festival",
  "venue": "Port Alishaboro Amphitheater",
  "eventAt": "2026-09-13T15:48:26.689Z",
  "type": "balcony",
  "price": 234.85,
  "currency": "EUR",
  "sectionCode": "FLOOR",
  "seatCode": "G49",
  "isSold": false,
  "createdAt": "2026-04-13T15:48:26.689Z"
}
Draftbit