example-data.com

calendar-events / #14

May
12
Tue

Security Training

12:45 AM – 5:25 AM

Antepono depono terror tres totus ocer.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/14"
)
calendar_event = res.json()
{
  "id": 14,
  "ownerUserId": 6,
  "title": "Security Training",
  "description": "Antepono depono terror tres totus ocer.",
  "startAt": "2026-05-12T00:45:03.545Z",
  "endAt": "2026-05-12T05:25:13.982Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    146,
    42
  ],
  "createdAt": "2026-03-09T14:51:43.686Z",
  "updatedAt": "2026-03-12T14:12:37.124Z"
}
Draftbit