example-data.com

events / #85

Nov
8
Sun

Annual Demo Day 2026

3:18 PM – 2:26 PM

Austin, TX

323 attending

Via animus vobis tempus. Ascit alter timor unus. Adiuvo amo pauper dolore depromo torqueo decet adfectus.

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/events/85" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/events/85"
);
const event = await res.json();
import type { Event } from "https://example-data.com/types/events.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/events/85"
);
const event = (await res.json()) as Event;
import requests

res = requests.get(
    "https://example-data.com/api/v1/events/85"
)
event = res.json()
{
  "id": 85,
  "title": "Annual Demo Day 2026",
  "slug": "annual-demo-day-2026-85",
  "description": "Via animus vobis tempus. Ascit alter timor unus. Adiuvo amo pauper dolore depromo torqueo decet adfectus.",
  "location": "Austin, TX",
  "isOnline": false,
  "startAt": "2026-11-08T15:18:50.769Z",
  "endAt": "2026-11-10T14:26:13.454Z",
  "organizerUserId": 146,
  "attendeeCount": 323,
  "createdAt": "2025-06-18T20:02:34.887Z",
  "updatedAt": "2025-10-08T14:29:12.744Z"
}
Draftbit