example-data.com

calendar-events / #172

Jun
17
Wed

Team Standup

2:12 PM – 2:12 PM

Conference Room B

Tutis color solus verecundia cavus surculus defleo voveo sit.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/172"
)
calendar_event = res.json()
{
  "id": 172,
  "ownerUserId": 74,
  "title": "Team Standup",
  "description": "Tutis color solus verecundia cavus surculus defleo voveo sit.",
  "startAt": "2026-06-17T14:12:29.375Z",
  "endAt": "2026-06-18T14:12:29.375Z",
  "isAllDay": true,
  "location": "Conference Room B",
  "attendeeUserIds": [
    87,
    84
  ],
  "createdAt": "2026-05-05T06:28:28.646Z",
  "updatedAt": "2026-05-18T09:46:55.542Z"
}
Draftbit