Apr
1
Wed
Board Meeting
10:37 AM – 3:02 PM
Google Meet
Verecundia confugo molestiae occaecati sapiente pauci usus conicio cubicularis.
Overview
calendar-events / #500
10:37 AM – 3:02 PM
Google Meet
Verecundia confugo molestiae occaecati sapiente pauci usus conicio cubicularis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/500" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/500" ); 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/500"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/500"
)
calendar_event = res.json() Response
{
"id": 500,
"ownerUserId": 206,
"title": "Board Meeting",
"description": "Verecundia confugo molestiae occaecati sapiente pauci usus conicio cubicularis.",
"startAt": "2026-04-01T10:37:03.239Z",
"endAt": "2026-04-01T15:02:24.872Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
11,
139,
150,
227
],
"createdAt": "2026-03-30T08:30:27.899Z",
"updatedAt": "2026-05-12T08:36:45.746Z"
}