example-data.com

calendar-events / #108

Jul
20
Mon

Team Standup

3:55 AM – 4:56 AM

Decor ratione desino cursus copiose strues cursim vomer tamisium.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/108"
)
calendar_event = res.json()
{
  "id": 108,
  "ownerUserId": 45,
  "title": "Team Standup",
  "description": "Decor ratione desino cursus copiose strues cursim vomer tamisium.",
  "startAt": "2026-07-20T03:55:27.053Z",
  "endAt": "2026-07-20T04:56:27.724Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    245,
    92,
    84,
    221,
    89
  ],
  "createdAt": "2026-04-01T18:48:52.335Z",
  "updatedAt": "2026-04-19T02:57:25.651Z"
}
Draftbit