calendar-events
calendar-events
Page 13 of 25.
Overview
- Mar17
Off-site Planning
7:23 AM · Main Boardroom
- Feb27
Budget Review
6:19 AM · Conference Room A
- Aug17
Product Review
7:10 AM · Conference Room B
- Jun10
Architecture Review
11:28 PM · Conference Room A
- Jul13
Sales Call
3:36 PM · Conference Room B
- May9
1:1 with Manager
6:19 AM
- May19
Budget Review
11:04 AM
- Aug8
Product Review
8:17 AM · Conference Room A
- Aug15
Budget Review
3:13 AM
- Jun26
Sales Call
10:47 AM · Office - Floor 3
- Jul8
Budget Review
9:25 PM · Office - Floor 3
- Aug13
Off-site Planning
10:12 AM · Cafeteria
- Jul25
1:1 with Manager
2:13 AM · Zoom
- May18
Sprint Planning
4:02 PM · Conference Room A
- May18
Customer Interview
8:13 PM · Microsoft Teams
- Jul20
Retrospective
2:43 PM · Google Meet
- Feb22
Sprint Planning
2:33 AM · Conference Room A
- Jun10
Sales Call
1:20 AM · Zoom
- Mar24
Board Meeting
7:19 AM · Main Boardroom
- Aug5
Team Standup
8:10 PM · Google Meet
- Jul29
Security Training
10:23 AM · Office - Floor 3
- May10
Strategy Workshop
2:59 PM · Main Boardroom
- Aug6
Product Review
12:10 AM · Conference Room B
- Jun17
Architecture Review
5:17 AM
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": 289,
"ownerUserId": 122,
"title": "Off-site Planning",
"description": "Decet solum depulso caritas adfero.",
"startAt": "2026-03-17T07:23:36.174Z",
"endAt": "2026-03-17T09:41:45.166Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [],
"createdAt": "2026-03-31T12:45:05.454Z",
"updatedAt": "2026-04-23T17:21:35.172Z"
},
{
"id": 290,
"ownerUserId": 123,
"title": "Budget Review",
"description": "Tertius appono voluptate.",
"startAt": "2026-02-27T06:19:09.677Z",
"endAt": "2026-02-27T11:33:53.149Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
226
],
"createdAt": "2026-04-28T15:01:45.880Z",
"updatedAt": "2026-05-21T07:20:06.388Z"
},
{
"id": 291,
"ownerUserId": 123,
"title": "Product Review",
"description": "Canonicus aduro carus conscendo absque altus deleniti soleo quasi.",
"startAt": "2026-08-17T07:10:12.187Z",
"endAt": "2026-08-17T12:54:25.746Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
1,
207
],
"createdAt": "2026-02-27T10:56:04.324Z",
"updatedAt": "2026-05-20T04:48:20.761Z"
}
],
"meta": {
"page": 13,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=13&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=14&limit=24",
"prev": "/api/v1/calendar-events?page=12&limit=24"
}
}