May
21
Thu
Team Standup
5:02 PM – 6:58 PM
Google Meet
Degero antiquus aspicio terga supellex tamdiu arcesso demoror adsidue tempora.
Overview
calendar-events / #244
5:02 PM – 6:58 PM
Google Meet
Degero antiquus aspicio terga supellex tamdiu arcesso demoror adsidue tempora.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/244" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/244" ); 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/244"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/244"
)
calendar_event = res.json() Response
{
"id": 244,
"ownerUserId": 105,
"title": "Team Standup",
"description": "Degero antiquus aspicio terga supellex tamdiu arcesso demoror adsidue tempora.",
"startAt": "2026-05-21T17:02:45.450Z",
"endAt": "2026-05-21T18:58:18.699Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [],
"createdAt": "2026-04-22T17:11:27.104Z",
"updatedAt": "2026-05-07T22:02:55.424Z"
}