example-data.com

calendar-events / #100

Aug
2
Sun

Engineering All-Hands

6:02 AM – 6:02 AM

Aiunt valetudo vicinus unde vallum sumo certus atqui.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/100"
)
calendar_event = res.json()
{
  "id": 100,
  "ownerUserId": 41,
  "title": "Engineering All-Hands",
  "description": "Aiunt valetudo vicinus unde vallum sumo certus atqui.",
  "startAt": "2026-08-02T06:02:10.797Z",
  "endAt": "2026-08-03T06:02:10.797Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    238
  ],
  "createdAt": "2026-03-13T07:38:27.685Z",
  "updatedAt": "2026-05-04T16:44:21.175Z"
}
Draftbit