May
6
Wed
Architecture Review
10:19 AM – 10:19 AM
Zoom
Vulgaris studio admitto quidem provident voluntarius amplus sollicito atrocitas peior.
Overview
calendar-events / #454
10:19 AM – 10:19 AM
Zoom
Vulgaris studio admitto quidem provident voluntarius amplus sollicito atrocitas peior.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/454" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/454" ); 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/454"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/454"
)
calendar_event = res.json() Response
{
"id": 454,
"ownerUserId": 185,
"title": "Architecture Review",
"description": "Vulgaris studio admitto quidem provident voluntarius amplus sollicito atrocitas peior.",
"startAt": "2026-05-06T10:19:05.268Z",
"endAt": "2026-05-07T10:19:05.268Z",
"isAllDay": true,
"location": "Zoom",
"attendeeUserIds": [],
"createdAt": "2026-04-09T02:07:56.888Z",
"updatedAt": "2026-05-08T03:23:47.144Z"
}