example-data.com

calendar-events / #237

Jun
11
Thu

Security Training

9:52 AM – 3:35 PM

Rooftop

Deripio alius sed atrox.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/237"
)
calendar_event = res.json()
{
  "id": 237,
  "ownerUserId": 101,
  "title": "Security Training",
  "description": "Deripio alius sed atrox.",
  "startAt": "2026-06-11T09:52:34.086Z",
  "endAt": "2026-06-11T15:35:04.392Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    127
  ],
  "createdAt": "2026-02-21T13:11:27.624Z",
  "updatedAt": "2026-03-20T08:13:39.357Z"
}
Draftbit