example-data.com

calendar-events / #22

Apr
20
Mon

Engineering All-Hands

6:22 AM – 6:22 AM

Office - Floor 3

Fugiat adstringo cresco venia curto accusator derelinquo totam viridis.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/22"
)
calendar_event = res.json()
{
  "id": 22,
  "ownerUserId": 10,
  "title": "Engineering All-Hands",
  "description": "Fugiat adstringo cresco venia curto accusator derelinquo totam viridis.",
  "startAt": "2026-04-20T06:22:26.883Z",
  "endAt": "2026-04-21T06:22:26.883Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    107,
    234,
    208,
    190
  ],
  "createdAt": "2026-03-10T09:29:03.687Z",
  "updatedAt": "2026-03-23T00:45:05.689Z"
}
Draftbit