example-data.com

calendar-events / #90

Mar
13
Fri

Sprint Planning

12:26 AM – 2:32 AM

Rooftop

Claro tametsi alias cogo comptus sustineo sollers tot approbo tripudio.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/90"
)
calendar_event = res.json()
{
  "id": 90,
  "ownerUserId": 38,
  "title": "Sprint Planning",
  "description": "Claro tametsi alias cogo comptus sustineo sollers tot approbo tripudio.",
  "startAt": "2026-03-13T00:26:06.697Z",
  "endAt": "2026-03-13T02:32:36.848Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    214
  ],
  "createdAt": "2026-05-13T23:38:00.394Z",
  "updatedAt": "2026-05-16T15:13:06.995Z"
}
Draftbit