example-data.com

calendar-events / #4

Aug
14
Fri

Onboarding Session

1:40 AM – 6:47 AM

Zoom

Currus decumbo admiratio sortitus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/4"
)
calendar_event = res.json()
{
  "id": 4,
  "ownerUserId": 2,
  "title": "Onboarding Session",
  "description": "Currus decumbo admiratio sortitus.",
  "startAt": "2026-08-14T01:40:28.368Z",
  "endAt": "2026-08-14T06:47:38.464Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [],
  "createdAt": "2026-05-11T16:42:52.359Z",
  "updatedAt": "2026-05-14T15:52:52.194Z"
}
Draftbit