Aug
5
Wed
Team Standup
8:10 PM – 12:55 AM
Google Meet
Sperno officiis clibanus ciminatio.
Overview
calendar-events / #308
8:10 PM – 12:55 AM
Google Meet
Sperno officiis clibanus ciminatio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/308" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/308" ); 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/308"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/308"
)
calendar_event = res.json() Response
{
"id": 308,
"ownerUserId": 129,
"title": "Team Standup",
"description": "Sperno officiis clibanus ciminatio.",
"startAt": "2026-08-05T20:10:25.465Z",
"endAt": "2026-08-06T00:55:34.113Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
6,
169,
86,
158
],
"createdAt": "2026-03-02T08:05:29.848Z",
"updatedAt": "2026-03-13T03:33:41.545Z"
}