Aug
6
Thu
Sprint Planning
4:52 AM – 8:20 AM
Conference Room A
Cetera textilis teres.
Overview
calendar-events / #368
4:52 AM – 8:20 AM
Conference Room A
Cetera textilis teres.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/368" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/368" ); 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/368"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/368"
)
calendar_event = res.json() Response
{
"id": 368,
"ownerUserId": 150,
"title": "Sprint Planning",
"description": "Cetera textilis teres.",
"startAt": "2026-08-06T04:52:10.412Z",
"endAt": "2026-08-06T08:20:21.619Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
134,
139,
179,
80,
173
],
"createdAt": "2026-03-17T21:52:35.989Z",
"updatedAt": "2026-03-31T01:19:11.496Z"
}