Apr
14
Tue
Retrospective
4:42 PM – 4:42 PM
Office - Floor 3
Clam casso averto curo.
Overview
calendar-events / #344
4:42 PM – 4:42 PM
Office - Floor 3
Clam casso averto curo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/344" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/344" ); 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/344"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/344"
)
calendar_event = res.json() Response
{
"id": 344,
"ownerUserId": 142,
"title": "Retrospective",
"description": "Clam casso averto curo.",
"startAt": "2026-04-14T16:42:10.631Z",
"endAt": "2026-04-15T16:42:10.631Z",
"isAllDay": true,
"location": "Office - Floor 3",
"attendeeUserIds": [
144,
170,
113,
244,
158
],
"createdAt": "2026-05-11T21:15:43.015Z",
"updatedAt": "2026-05-19T01:40:12.044Z"
}