example-data.com

calendar-events / #144

Jun
1
Mon

Strategy Workshop

5:41 PM – 9:45 PM

Zoom

Benevolentia officiis blanditiis cogito terga minima.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/144"
)
calendar_event = res.json()
{
  "id": 144,
  "ownerUserId": 61,
  "title": "Strategy Workshop",
  "description": "Benevolentia officiis blanditiis cogito terga minima.",
  "startAt": "2026-06-01T17:41:50.576Z",
  "endAt": "2026-06-01T21:45:13.722Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    80
  ],
  "createdAt": "2026-03-26T13:34:00.961Z",
  "updatedAt": "2026-04-15T11:00:29.691Z"
}
Draftbit