example-data.com

calendar-events / #76

May
17
Sun

Security Training

4:52 AM – 10:39 AM

Rooftop

Facere succurro cohaero quos aufero stultus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/76"
)
calendar_event = res.json()
{
  "id": 76,
  "ownerUserId": 34,
  "title": "Security Training",
  "description": "Facere succurro cohaero quos aufero stultus.",
  "startAt": "2026-05-17T04:52:37.953Z",
  "endAt": "2026-05-17T10:39:05.238Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    223
  ],
  "createdAt": "2026-03-13T13:45:44.052Z",
  "updatedAt": "2026-04-21T20:38:20.468Z"
}
Draftbit