example-data.com

calendar-events / #153

Jul
14
Tue

Team Lunch

12:50 PM – 2:49 PM

Google Meet

Nisi cinis dolorum voveo abstergo turpis causa angulus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/153"
)
calendar_event = res.json()
{
  "id": 153,
  "ownerUserId": 65,
  "title": "Team Lunch",
  "description": "Nisi cinis dolorum voveo abstergo turpis causa angulus.",
  "startAt": "2026-07-14T12:50:12.924Z",
  "endAt": "2026-07-14T14:49:19.488Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    20,
    136,
    180,
    152,
    32
  ],
  "createdAt": "2026-05-01T14:47:37.693Z",
  "updatedAt": "2026-05-19T09:51:53.259Z"
}
Draftbit