Aug
15
Sat
Off-site Planning
2:12 PM – 9:21 PM
Conference Room A
Vigilo vero adaugeo excepturi colligo decor.
Overview
calendar-events / #479
2:12 PM – 9:21 PM
Conference Room A
Vigilo vero adaugeo excepturi colligo decor.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/479" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/479" ); 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/479"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/479"
)
calendar_event = res.json() Response
{
"id": 479,
"ownerUserId": 196,
"title": "Off-site Planning",
"description": "Vigilo vero adaugeo excepturi colligo decor.",
"startAt": "2026-08-15T14:12:13.681Z",
"endAt": "2026-08-15T21:21:35.332Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
115,
61,
143
],
"createdAt": "2026-03-13T09:16:09.904Z",
"updatedAt": "2026-03-26T09:24:22.188Z"
}