example-data.com

calendar-events / #134

May
23
Sat

Sprint Planning

3:23 PM – 10:00 PM

Microsoft Teams

Patruus ventosus altus degenero virga.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/134"
)
calendar_event = res.json()
{
  "id": 134,
  "ownerUserId": 56,
  "title": "Sprint Planning",
  "description": "Patruus ventosus altus degenero virga.",
  "startAt": "2026-05-23T15:23:45.873Z",
  "endAt": "2026-05-23T22:00:47.632Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    46,
    189,
    48
  ],
  "createdAt": "2026-04-13T06:50:13.435Z",
  "updatedAt": "2026-05-21T00:48:49.798Z"
}
Draftbit