example-data.com

calendar-events / #147

Jul
19
Sun

Team Standup

12:41 PM – 8:39 PM

Microsoft Teams

Centum solvo quam maxime tactus vilicus derelinquo.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/147"
)
calendar_event = res.json()
{
  "id": 147,
  "ownerUserId": 62,
  "title": "Team Standup",
  "description": "Centum solvo quam maxime tactus vilicus derelinquo.",
  "startAt": "2026-07-19T12:41:35.111Z",
  "endAt": "2026-07-19T20:39:06.648Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    63,
    89
  ],
  "createdAt": "2026-04-14T11:28:01.618Z",
  "updatedAt": "2026-04-26T22:11:05.351Z"
}
Draftbit