calendar-events
calendar-events
Page 12 of 25.
Overview
- Mar10
1:1 with Manager
12:24 AM · Conference Room A
- Apr17
Security Training
5:08 PM · Microsoft Teams
- Jun4
Design Critique
5:32 PM · Zoom
- Jul1
Team Standup
2:03 AM · Office - Floor 3
- Mar17
Retrospective
4:33 AM
- May13
Retrospective
12:04 AM · Conference Room A
- Aug17
Board Meeting
9:44 PM · Office - Floor 3
- May27
Security Training
5:39 AM · Google Meet
- May16
Budget Review
7:58 PM · Google Meet
- Mar29
1:1 with Manager
5:44 AM · Conference Room B
- Feb26
Team Standup
8:06 AM · Main Boardroom
- Jul31
Architecture Review
9:59 AM · Conference Room B
- May12
Engineering All-Hands
8:40 AM · Google Meet
- Jul13
Team Standup
9:49 AM
- Jun24
Quarterly Review
3:05 PM · Office - Floor 3
- May7
Demo Day
11:39 AM · Cafeteria
- Mar25
Demo Day
4:45 AM
- Mar9
Architecture Review
10:09 PM · Microsoft Teams
- Apr1
Demo Day
8:17 AM · Zoom
- Jul21
Onboarding Session
4:04 PM
- Jul13
Onboarding Session
11:44 PM · Zoom
- Jun8
Hiring Interview
3:57 AM
- Mar17
Off-site Planning
1:10 AM · Google Meet
- Jul28
Engineering All-Hands
10:21 PM · Office - Floor 3
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": 265,
"ownerUserId": 113,
"title": "1:1 with Manager",
"description": "Tandem aggredior argentum theologus ratione tonsor.",
"startAt": "2026-03-10T00:24:58.761Z",
"endAt": "2026-03-10T03:18:47.509Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
242,
201,
233,
163
],
"createdAt": "2026-02-21T21:37:10.881Z",
"updatedAt": "2026-05-13T01:22:08.674Z"
},
{
"id": 266,
"ownerUserId": 113,
"title": "Security Training",
"description": "Vinitor nobis crinis delibero.",
"startAt": "2026-04-17T17:08:23.582Z",
"endAt": "2026-04-17T20:10:22.981Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-04-18T02:27:15.846Z",
"updatedAt": "2026-04-24T16:03:29.283Z"
},
{
"id": 267,
"ownerUserId": 113,
"title": "Design Critique",
"description": "Aperio verbum tum convoco argentum taceo decumbo tendo acies aranea.",
"startAt": "2026-06-04T17:32:45.097Z",
"endAt": "2026-06-05T17:32:45.097Z",
"isAllDay": true,
"location": "Zoom",
"attendeeUserIds": [
244,
179
],
"createdAt": "2026-03-19T18:18:35.000Z",
"updatedAt": "2026-04-03T07:25:23.028Z"
}
],
"meta": {
"page": 12,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=12&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=13&limit=24",
"prev": "/api/v1/calendar-events?page=11&limit=24"
}
}