example-data.com

calendar-events / #221

Jun
8
Mon

Team Lunch

12:45 PM – 12:45 PM

Google Meet

Acsi sum sequi.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/221"
)
calendar_event = res.json()
{
  "id": 221,
  "ownerUserId": 95,
  "title": "Team Lunch",
  "description": "Acsi sum sequi.",
  "startAt": "2026-06-08T12:45:43.833Z",
  "endAt": "2026-06-09T12:45:43.833Z",
  "isAllDay": true,
  "location": "Google Meet",
  "attendeeUserIds": [
    15,
    46,
    238,
    185
  ],
  "createdAt": "2026-04-22T21:13:48.909Z",
  "updatedAt": "2026-05-06T19:17:09.079Z"
}
Draftbit