example-data.com

calendar-events / #174

Aug
9
Sun

Team Lunch

3:20 AM – 8:22 AM

Zoom

Ademptio temperantia tutis alter dicta vado suffoco cometes.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/174"
)
calendar_event = res.json()
{
  "id": 174,
  "ownerUserId": 76,
  "title": "Team Lunch",
  "description": "Ademptio temperantia tutis alter dicta vado suffoco cometes.",
  "startAt": "2026-08-09T03:20:14.119Z",
  "endAt": "2026-08-09T08:22:48.762Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    194,
    145
  ],
  "createdAt": "2026-03-27T08:59:00.775Z",
  "updatedAt": "2026-04-11T11:07:10.209Z"
}
Draftbit