calendar-events
calendar-events
Page 5 of 25.
Overview
- Mar25
Product Review
1:13 AM
- Apr23
Budget Review
4:18 PM · Cafeteria
- Mar18
Hiring Interview
5:09 AM · Main Boardroom
- Aug2
Engineering All-Hands
6:02 AM
- Mar19
Sprint Planning
9:51 AM
- Mar8
Engineering All-Hands
7:10 PM · Conference Room A
- Jul30
Off-site Planning
2:08 AM · Rooftop
- Jun23
Design Critique
9:19 AM
- Feb21
Demo Day
4:40 AM · Microsoft Teams
- Apr10
Hiring Interview
7:08 PM · Zoom
- Jul26
1:1 with Manager
8:45 PM · Microsoft Teams
- Jul20
Team Standup
3:55 AM
- Mar8
Team Lunch
7:38 PM · Main Boardroom
- Jul3
Retrospective
9:15 PM · Conference Room A
- Feb24
Sales Call
6:16 PM
- May19
Team Standup
9:29 PM · Rooftop
- Apr10
Engineering All-Hands
7:48 AM · Office - Floor 3
- Mar14
Off-site Planning
8:38 PM · Zoom
- Mar15
Board Meeting
5:00 AM · Cafeteria
- Apr26
Quarterly Review
12:08 PM · Microsoft Teams
- May23
Product Review
10:30 AM · Cafeteria
- Jun3
Hiring Interview
12:10 PM · Google Meet
- Mar20
Hiring Interview
5:32 AM · Conference Room A
- Aug11
Sales Call
11:15 PM · Microsoft Teams
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": 97,
"ownerUserId": 40,
"title": "Product Review",
"description": "Copia curatio bellicus aedificium cilicium crinis torqueo vehemens victus triduana.",
"startAt": "2026-03-25T01:13:33.803Z",
"endAt": "2026-03-25T08:00:46.710Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
242,
221,
222,
187,
132
],
"createdAt": "2026-04-02T03:36:11.565Z",
"updatedAt": "2026-04-30T23:50:22.397Z"
},
{
"id": 98,
"ownerUserId": 40,
"title": "Budget Review",
"description": "Contego argentum tristis adficio tremo modi veniam ventosus catena aeneus.",
"startAt": "2026-04-23T16:18:27.825Z",
"endAt": "2026-04-23T17:27:55.219Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
30,
24,
216,
215,
166
],
"createdAt": "2026-03-18T23:32:41.267Z",
"updatedAt": "2026-05-11T15:44:40.953Z"
},
{
"id": 99,
"ownerUserId": 40,
"title": "Hiring Interview",
"description": "Vetus crustulum ducimus asper aiunt asporto.",
"startAt": "2026-03-18T05:09:19.121Z",
"endAt": "2026-03-18T10:10:55.329Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
147,
99,
5
],
"createdAt": "2026-05-16T14:00:59.788Z",
"updatedAt": "2026-05-19T10:45:02.047Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=5&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=6&limit=24",
"prev": "/api/v1/calendar-events?page=4&limit=24"
}
}