May
18
Mon
Sprint Planning
4:02 PM – 9:59 PM
Conference Room A
Super vindico coepi caute.
Overview
calendar-events / #302
4:02 PM – 9:59 PM
Conference Room A
Super vindico coepi caute.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/302" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/302" ); 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/302"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/302"
)
calendar_event = res.json() Response
{
"id": 302,
"ownerUserId": 127,
"title": "Sprint Planning",
"description": "Super vindico coepi caute.",
"startAt": "2026-05-18T16:02:57.791Z",
"endAt": "2026-05-18T21:59:22.407Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
213,
38,
129,
33,
227
],
"createdAt": "2026-05-05T17:31:37.560Z",
"updatedAt": "2026-05-20T15:05:16.446Z"
}