example-data.com

calendar-events / #196

Jul
30
Thu

Team Standup

12:14 AM – 12:14 AM

Office - Floor 3

Maxime tenus amitto.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/196"
)
calendar_event = res.json()
{
  "id": 196,
  "ownerUserId": 85,
  "title": "Team Standup",
  "description": "Maxime tenus amitto.",
  "startAt": "2026-07-30T00:14:25.775Z",
  "endAt": "2026-07-31T00:14:25.775Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [],
  "createdAt": "2026-05-18T06:59:01.678Z",
  "updatedAt": "2026-05-20T06:14:46.168Z"
}
Draftbit