example-data.com

events / #11

Dec
27
Sat

Annual Design Conference 2025

10:51 PM – 5:49 AM

Seattle, WA

243 attending

Paulatim quod spes eveniet clementia abutor celebrer cumque aequus averto. Ventus tempora balbus adaugeo aptus dolorem causa curia tempore. Alioqui solium tristis adduco.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/11"
)
event = res.json()
{
  "id": 11,
  "title": "Annual Design Conference 2025",
  "slug": "annual-design-conference-2025-11",
  "description": "Paulatim quod spes eveniet clementia abutor celebrer cumque aequus averto. Ventus tempora balbus adaugeo aptus dolorem causa curia tempore. Alioqui solium tristis adduco.",
  "location": "Seattle, WA",
  "isOnline": false,
  "startAt": "2025-12-27T22:51:38.862Z",
  "endAt": "2025-12-28T05:49:11.290Z",
  "organizerUserId": 215,
  "attendeeCount": 243,
  "createdAt": "2025-09-15T14:14:41.430Z",
  "updatedAt": "2025-09-28T05:25:26.786Z"
}
Draftbit