Mar
12
Thu
Board Meeting
2:43 PM – 2:43 PM
Google Meet
Thalassinus volup cras calamitas in.
Overview
calendar-events / #180
2:43 PM – 2:43 PM
Google Meet
Thalassinus volup cras calamitas in.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/180" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/180" ); 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/180"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/180"
)
calendar_event = res.json() Response
{
"id": 180,
"ownerUserId": 79,
"title": "Board Meeting",
"description": "Thalassinus volup cras calamitas in.",
"startAt": "2026-03-12T14:43:33.187Z",
"endAt": "2026-03-13T14:43:33.187Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
103
],
"createdAt": "2026-04-25T11:03:41.955Z",
"updatedAt": "2026-05-20T03:15:16.472Z"
}