calendar-events
calendar-events
Page 8 of 25.
Overview
- May30
Team Standup
6:19 AM · Zoom
- Mar15
Product Review
9:47 PM · Conference Room A
- Feb27
Architecture Review
9:07 PM · Rooftop
- Jun17
Team Standup
2:12 PM · Conference Room B
- Apr1
Sales Call
1:24 PM · Conference Room A
- Aug9
Team Lunch
3:20 AM · Zoom
- Apr14
Security Training
4:38 AM · Conference Room A
- Apr23
Product Review
10:56 AM · Cafeteria
- Aug8
1:1 with Manager
4:50 AM · Office - Floor 3
- Aug6
Budget Review
2:29 PM · Microsoft Teams
- Feb24
Strategy Workshop
2:44 AM · Zoom
- Mar12
Board Meeting
2:43 PM · Google Meet
- Apr21
Product Review
1:00 AM · Microsoft Teams
- Jun5
Product Review
5:18 AM
- Jul22
Team Lunch
1:22 AM · Cafeteria
- Mar21
Team Lunch
9:56 PM · Rooftop
- Jul24
Customer Interview
11:02 AM · Microsoft Teams
- Mar28
Quarterly Review
6:50 AM · Conference Room A
- Feb22
Team Lunch
4:44 PM · Main Boardroom
- Apr3
Demo Day
6:44 AM · Microsoft Teams
- May6
Design Critique
5:17 AM · Microsoft Teams
- Apr19
Off-site Planning
9:42 AM · Conference Room B
- Aug18
Engineering All-Hands
4:26 AM · Office - Floor 3
- Jun9
Budget Review
11:46 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": 169,
"ownerUserId": 73,
"title": "Team Standup",
"description": "Statim commodo cumque conscendo adimpleo valetudo.",
"startAt": "2026-05-30T06:19:43.487Z",
"endAt": "2026-05-30T13:38:58.917Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
240,
9,
123,
160
],
"createdAt": "2026-02-23T08:42:41.636Z",
"updatedAt": "2026-04-19T04:47:45.302Z"
},
{
"id": 170,
"ownerUserId": 73,
"title": "Product Review",
"description": "Baiulus atavus civitas sursum.",
"startAt": "2026-03-15T21:47:47.818Z",
"endAt": "2026-03-16T21:47:47.818Z",
"isAllDay": true,
"location": "Conference Room A",
"attendeeUserIds": [
17
],
"createdAt": "2026-02-27T00:27:18.644Z",
"updatedAt": "2026-05-09T04:48:05.455Z"
},
{
"id": 171,
"ownerUserId": 74,
"title": "Architecture Review",
"description": "Pecto stella subito suadeo.",
"startAt": "2026-02-27T21:07:03.720Z",
"endAt": "2026-02-28T02:40:31.250Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
149,
114,
222,
208
],
"createdAt": "2026-03-16T19:03:08.604Z",
"updatedAt": "2026-04-19T17:23:42.766Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=8&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=9&limit=24",
"prev": "/api/v1/calendar-events?page=7&limit=24"
}
}