Jul
25
Sat
Design Critique
5:06 AM – 11:53 AM
Google Meet
Aggredior ascisco adeptio abeo.
Overview
calendar-events / #227
5:06 AM – 11:53 AM
Google Meet
Aggredior ascisco adeptio abeo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/227" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/227" ); 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/227"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/227"
)
calendar_event = res.json() Response
{
"id": 227,
"ownerUserId": 96,
"title": "Design Critique",
"description": "Aggredior ascisco adeptio abeo.",
"startAt": "2026-07-25T05:06:34.859Z",
"endAt": "2026-07-25T11:53:30.189Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
116,
190,
115,
17
],
"createdAt": "2026-03-10T19:26:18.516Z",
"updatedAt": "2026-04-29T00:45:59.009Z"
}