example-data.com

calendar-events / #80

Jul
7
Tue

Engineering All-Hands

6:34 AM – 6:34 AM

Zoom

Caveo patruus natus crapula dolorem arceo spoliatio thorax.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/80"
)
calendar_event = res.json()
{
  "id": 80,
  "ownerUserId": 35,
  "title": "Engineering All-Hands",
  "description": "Caveo patruus natus crapula dolorem arceo spoliatio thorax.",
  "startAt": "2026-07-07T06:34:05.305Z",
  "endAt": "2026-07-08T06:34:05.305Z",
  "isAllDay": true,
  "location": "Zoom",
  "attendeeUserIds": [
    26,
    148,
    208,
    2
  ],
  "createdAt": "2026-02-25T22:11:28.961Z",
  "updatedAt": "2026-03-17T23:01:40.202Z"
}
Draftbit