Apr
28
Tue
Sprint Planning
5:39 PM – 12:39 AM
Microsoft Teams
Caritas suscipio adaugeo.
Overview
calendar-events / #440
5:39 PM – 12:39 AM
Microsoft Teams
Caritas suscipio adaugeo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/440" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/440" ); const calendarEvent = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent } from "./types/calendar-events";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/440"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/440"
)
calendar_event = res.json() Response
{
"id": 440,
"ownerUserId": 180,
"title": "Sprint Planning",
"description": "Caritas suscipio adaugeo.",
"startAt": "2026-04-28T17:39:02.008Z",
"endAt": "2026-04-29T00:39:54.333Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
171,
215,
64,
157,
77
],
"createdAt": "2026-05-17T21:40:22.625Z",
"updatedAt": "2026-05-20T00:23:04.227Z"
}