example-data.com

calendar-events / #214

Jun
9
Tue

Demo Day

12:39 AM – 7:14 AM

Conference Room B

Iure talus turbo callide utor.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/214"
)
calendar_event = res.json()
{
  "id": 214,
  "ownerUserId": 93,
  "title": "Demo Day",
  "description": "Iure talus turbo callide utor.",
  "startAt": "2026-06-09T00:39:10.704Z",
  "endAt": "2026-06-09T07:14:49.932Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    141,
    91
  ],
  "createdAt": "2026-04-28T19:14:37.720Z",
  "updatedAt": "2026-05-02T12:47:41.981Z"
}
Draftbit