example-data.com

calendar-events / #79

Feb
25
Wed

Strategy Workshop

5:11 PM – 12:32 AM

Google Meet

Strues candidus soleo caveo venustas cunctatio aegre aqua alioqui laborum.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/79"
)
calendar_event = res.json()
{
  "id": 79,
  "ownerUserId": 35,
  "title": "Strategy Workshop",
  "description": "Strues candidus soleo caveo venustas cunctatio aegre aqua alioqui laborum.",
  "startAt": "2026-02-25T17:11:19.770Z",
  "endAt": "2026-02-26T00:32:47.978Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    217
  ],
  "createdAt": "2026-03-07T15:49:45.491Z",
  "updatedAt": "2026-05-16T01:16:28.926Z"
}
Draftbit