example-data.com

calendar-events / #240

May
21
Thu

Strategy Workshop

4:12 AM – 8:14 AM

Basium eius aequus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/240"
)
calendar_event = res.json()
{
  "id": 240,
  "ownerUserId": 102,
  "title": "Strategy Workshop",
  "description": "Basium eius aequus.",
  "startAt": "2026-05-21T04:12:40.531Z",
  "endAt": "2026-05-21T08:14:35.340Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    84,
    156,
    129
  ],
  "createdAt": "2026-04-29T04:56:26.267Z",
  "updatedAt": "2026-05-05T11:50:54.471Z"
}
Draftbit