example-data.com

calendar-events / #30

Mar
25
Wed

Retrospective

11:22 PM – 11:22 PM

Google Meet

Claudeo uxor curia adiuvo mollitia eius cubicularis curto tabgo ciminatio.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/30"
)
calendar_event = res.json()
{
  "id": 30,
  "ownerUserId": 15,
  "title": "Retrospective",
  "description": "Claudeo uxor curia adiuvo mollitia eius cubicularis curto tabgo ciminatio.",
  "startAt": "2026-03-25T23:22:36.421Z",
  "endAt": "2026-03-26T23:22:36.421Z",
  "isAllDay": true,
  "location": "Google Meet",
  "attendeeUserIds": [
    157,
    45,
    243
  ],
  "createdAt": "2026-04-01T19:04:14.447Z",
  "updatedAt": "2026-04-20T03:39:38.031Z"
}
Draftbit