example-data.com

calendar-events / #130

Jun
25
Thu

Board Meeting

4:14 PM – 4:14 PM

Google Meet

Spectaculum abduco bonus defessus contra statua acer.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/130"
)
calendar_event = res.json()
{
  "id": 130,
  "ownerUserId": 54,
  "title": "Board Meeting",
  "description": "Spectaculum abduco bonus defessus contra statua acer.",
  "startAt": "2026-06-25T16:14:29.484Z",
  "endAt": "2026-06-26T16:14:29.484Z",
  "isAllDay": true,
  "location": "Google Meet",
  "attendeeUserIds": [
    70,
    249,
    213,
    85
  ],
  "createdAt": "2026-04-04T04:05:40.299Z",
  "updatedAt": "2026-04-11T05:27:54.309Z"
}
Draftbit