calendar-events
calendar-events
Page 3 of 25.
Overview
- Jul11
Board Meeting
6:19 PM · Office - Floor 3
- Apr1
Team Standup
10:36 PM · Conference Room B
- Jun12
Onboarding Session
8:03 PM · Main Boardroom
- Jul25
Off-site Planning
2:13 PM
- Aug12
Product Review
1:18 PM · Conference Room A
- May25
1:1 with Manager
5:01 PM
- Apr8
Hiring Interview
6:28 AM · Main Boardroom
- Feb25
Architecture Review
2:47 PM · Microsoft Teams
- Mar16
Design Critique
11:36 AM · Zoom
- May11
Sprint Planning
5:50 AM
- Mar31
Sprint Planning
1:42 PM · Microsoft Teams
- May20
Engineering All-Hands
4:56 PM · Rooftop
- May2
Strategy Workshop
10:11 AM · Microsoft Teams
- Jun2
Architecture Review
10:11 AM
- Jul10
Engineering All-Hands
10:25 PM · Microsoft Teams
- Jun7
Sprint Planning
4:48 PM
- Aug2
Sales Call
12:37 PM · Rooftop
- Feb27
Engineering All-Hands
1:49 AM
- Mar14
1:1 with Manager
7:38 PM · Conference Room A
- Jun14
1:1 with Manager
12:14 AM
- May13
Sales Call
5:38 PM · Cafeteria
- May15
Sprint Planning
4:16 AM · Zoom
- Aug13
Retrospective
4:27 AM · Cafeteria
- May30
Retrospective
9:28 AM · Zoom
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/calendar-events";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<CalendarEvent>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 49,
"ownerUserId": 24,
"title": "Board Meeting",
"description": "Natus socius demergo eaque comitatus suggero expedita.",
"startAt": "2026-07-11T18:19:17.788Z",
"endAt": "2026-07-11T20:21:23.571Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [],
"createdAt": "2026-03-05T20:22:03.781Z",
"updatedAt": "2026-03-13T03:57:24.564Z"
},
{
"id": 50,
"ownerUserId": 25,
"title": "Team Standup",
"description": "Audacia demens volaticus clamo summisse laborum bestia ad angulus.",
"startAt": "2026-04-01T22:36:06.737Z",
"endAt": "2026-04-02T01:03:34.254Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
106
],
"createdAt": "2026-05-03T04:11:20.073Z",
"updatedAt": "2026-05-08T20:43:42.651Z"
},
{
"id": 51,
"ownerUserId": 25,
"title": "Onboarding Session",
"description": "Praesentium approbo sustineo molestiae ultra benevolentia coadunatio.",
"startAt": "2026-06-12T20:03:17.336Z",
"endAt": "2026-06-13T03:17:42.021Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
140
],
"createdAt": "2026-04-05T01:59:27.871Z",
"updatedAt": "2026-04-27T09:02:05.766Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=3&limit=24",
"first": "/api/v1/calendar-events?page=1&limit=24",
"last": "/api/v1/calendar-events?page=25&limit=24",
"next": "/api/v1/calendar-events?page=4&limit=24",
"prev": "/api/v1/calendar-events?page=2&limit=24"
}
}