example-data.com

calendar-events / #17

Aug
1
Sat

Engineering All-Hands

11:50 AM – 1:26 PM

Office - Floor 3

Accedo vulgaris esse comedo clibanus summopere surculus ad congregatio.

Component variants

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

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/17"
);
const calendarEvent = (await res.json()) as CalendarEvent;
import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/17"
)
calendar_event = res.json()
{
  "id": 17,
  "ownerUserId": 8,
  "title": "Engineering All-Hands",
  "description": "Accedo vulgaris esse comedo clibanus summopere surculus ad congregatio.",
  "startAt": "2026-08-01T11:50:02.037Z",
  "endAt": "2026-08-01T13:26:59.533Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    202,
    22,
    126
  ],
  "createdAt": "2026-03-14T08:25:31.884Z",
  "updatedAt": "2026-05-07T04:10:16.110Z"
}
Draftbit