Jun
23
Tue
Strategy Workshop
5:28 PM – 9:11 PM
Conference Room B
Adficio amiculum commodi volutabrum utroque thesaurus contra somniculosus vociferor.
Overview
calendar-events / #376
5:28 PM – 9:11 PM
Conference Room B
Adficio amiculum commodi volutabrum utroque thesaurus contra somniculosus vociferor.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/376" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/376" ); 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/376"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/376"
)
calendar_event = res.json() Response
{
"id": 376,
"ownerUserId": 154,
"title": "Strategy Workshop",
"description": "Adficio amiculum commodi volutabrum utroque thesaurus contra somniculosus vociferor.",
"startAt": "2026-06-23T17:28:48.091Z",
"endAt": "2026-06-23T21:11:50.413Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
198,
20,
48,
35,
97
],
"createdAt": "2026-04-04T05:21:47.438Z",
"updatedAt": "2026-04-12T15:57:47.121Z"
}