example-data.com

events / #8

May
5
Wed

Community Design Conference 2025

3:24 PM – 8:44 PM

Seattle, WA

933 attending

Bellum videlicet earum vulgo ducimus suffoco vomer curvo territo. Assumenda deleniti voro censura. Verecundia carus stella degero adversus adsum curtus claro volva benevolentia.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/8"
)
event = res.json()
{
  "id": 8,
  "title": "Community Design Conference 2025",
  "slug": "community-design-conference-2025-8",
  "description": "Bellum videlicet earum vulgo ducimus suffoco vomer curvo territo. Assumenda deleniti voro censura. Verecundia carus stella degero adversus adsum curtus claro volva benevolentia.",
  "location": "Seattle, WA",
  "isOnline": false,
  "startAt": "2027-05-05T15:24:16.766Z",
  "endAt": "2027-05-05T20:44:33.394Z",
  "organizerUserId": 229,
  "attendeeCount": 933,
  "createdAt": "2025-11-05T21:30:13.433Z",
  "updatedAt": "2026-04-11T23:20:30.631Z"
}
Draftbit