Mar
25
Wed
Retrospective
11:22 PM – 11:22 PM
Google Meet
Claudeo uxor curia adiuvo mollitia eius cubicularis curto tabgo ciminatio.
Overview
calendar-events / #30
11:22 PM – 11:22 PM
Google Meet
Claudeo uxor curia adiuvo mollitia eius cubicularis curto tabgo ciminatio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/30" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/30" ); 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/30"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/30"
)
calendar_event = res.json() Response
{
"id": 30,
"ownerUserId": 15,
"title": "Retrospective",
"description": "Claudeo uxor curia adiuvo mollitia eius cubicularis curto tabgo ciminatio.",
"startAt": "2026-03-25T23:22:36.421Z",
"endAt": "2026-03-26T23:22:36.421Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
157,
45,
243
],
"createdAt": "2026-04-01T19:04:14.447Z",
"updatedAt": "2026-04-20T03:39:38.031Z"
}