Mar
9
Mon
Team Standup
7:40 AM – 1:55 PM
Google Meet
Perferendis conitor cunae dolorem aegre ter autus.
Overview
calendar-events / #466
7:40 AM – 1:55 PM
Google Meet
Perferendis conitor cunae dolorem aegre ter autus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/466" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/466" ); 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/466"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/466"
)
calendar_event = res.json() Response
{
"id": 466,
"ownerUserId": 189,
"title": "Team Standup",
"description": "Perferendis conitor cunae dolorem aegre ter autus.",
"startAt": "2026-03-09T07:40:23.913Z",
"endAt": "2026-03-09T13:55:58.937Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
88,
184,
208
],
"createdAt": "2026-03-25T06:09:58.159Z",
"updatedAt": "2026-03-28T12:48:45.242Z"
}