example-data.com

calendar-events / #58

May
11
Mon

Sprint Planning

5:50 AM – 8:26 AM

Sordeo collum bos alveus debilito nobis audax valetudo constans.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/58"
)
calendar_event = res.json()
{
  "id": 58,
  "ownerUserId": 27,
  "title": "Sprint Planning",
  "description": "Sordeo collum bos alveus debilito nobis audax valetudo constans.",
  "startAt": "2026-05-11T05:50:17.210Z",
  "endAt": "2026-05-11T08:26:08.770Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    76
  ],
  "createdAt": "2026-03-17T20:25:58.692Z",
  "updatedAt": "2026-05-21T10:45:46.161Z"
}
Draftbit