example-data.com

events / #99

Aug
10
Mon

Community Demo Day 2026

6:04 PM – 5:26 AM

Austin, TX

340 attending

Depraedor repudiandae auctor conatus taedium appello. Tristis cavus sto vinco tabula id cohors sustineo argentum. Cotidie tabgo veritas.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/99"
)
event = res.json()
{
  "id": 99,
  "title": "Community Demo Day 2026",
  "slug": "community-demo-day-2026-99",
  "description": "Depraedor repudiandae auctor conatus taedium appello. Tristis cavus sto vinco tabula id cohors sustineo argentum. Cotidie tabgo veritas.",
  "location": "Austin, TX",
  "isOnline": false,
  "startAt": "2026-08-10T18:04:00.870Z",
  "endAt": "2026-08-12T05:26:56.966Z",
  "organizerUserId": 179,
  "attendeeCount": 340,
  "createdAt": "2025-10-14T00:25:12.942Z",
  "updatedAt": "2026-03-22T02:48:09.052Z"
}
Draftbit