Mar
28
Sat
Team Standup
1:19 PM – 2:37 PM
Google Meet
Minima creator ager sopor debeo vorax amitto vicinus.
Overview
calendar-events / #562
1:19 PM – 2:37 PM
Google Meet
Minima creator ager sopor debeo vorax amitto vicinus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/562" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/562" ); 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/562"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/562"
)
calendar_event = res.json() Response
{
"id": 562,
"ownerUserId": 235,
"title": "Team Standup",
"description": "Minima creator ager sopor debeo vorax amitto vicinus.",
"startAt": "2026-03-28T13:19:59.511Z",
"endAt": "2026-03-28T14:37:25.939Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
131,
87,
126
],
"createdAt": "2026-04-15T07:53:21.070Z",
"updatedAt": "2026-04-19T02:39:03.898Z"
}