example-data.com

calendar-events / #70

May
15
Fri

Sprint Planning

4:16 AM – 7:50 AM

Zoom

Deporto commodi cubo ipsum confido sulum spes crustulum vindico comes.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/70"
)
calendar_event = res.json()
{
  "id": 70,
  "ownerUserId": 31,
  "title": "Sprint Planning",
  "description": "Deporto commodi cubo ipsum confido sulum spes crustulum vindico comes.",
  "startAt": "2026-05-15T04:16:49.944Z",
  "endAt": "2026-05-15T07:50:04.407Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    142,
    165
  ],
  "createdAt": "2026-05-02T18:06:58.633Z",
  "updatedAt": "2026-05-17T20:22:43.107Z"
}
Draftbit