calendar-events
calendar-events
Page 11 of 25.
Overview
- Jun26
Strategy Workshop
10:06 AM · Office - Floor 3
- Mar10
Design Critique
6:44 PM · Cafeteria
- May28
Onboarding Session
2:03 AM
- May21
Team Standup
5:02 PM · Google Meet
- May6
Demo Day
2:16 PM · Microsoft Teams
- May11
Strategy Workshop
5:08 AM · Zoom
- Apr21
Onboarding Session
11:26 PM · Cafeteria
- May5
Budget Review
10:53 AM · Google Meet
- May4
Budget Review
7:18 AM · Rooftop
- Jul13
Strategy Workshop
5:06 AM · Conference Room B
- Jun24
Team Lunch
4:31 PM
- May9
Budget Review
9:58 AM · Conference Room A
- Mar16
Customer Interview
6:26 PM · Cafeteria
- Jun2
Design Critique
10:56 PM · Cafeteria
- May22
Security Training
6:33 AM · Cafeteria
- Jul1
1:1 with Manager
6:13 PM · Microsoft Teams
- Jun13
1:1 with Manager
10:31 PM · Zoom
- Jul10
Demo Day
8:55 AM · Zoom
- Jun24
Team Lunch
2:34 PM · Main Boardroom
- Aug14
Engineering All-Hands
2:28 PM · Microsoft Teams
- Feb28
Architecture Review
4:31 PM
- Aug3
Security Training
11:59 AM
- Jun10
Board Meeting
7:49 PM · Microsoft Teams
- Jul13
Engineering All-Hands
7:41 AM · Google Meet
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": 241,
"ownerUserId": 103,
"title": "Strategy Workshop",
"description": "Aeneus deinde officia quisquam thesis alo pauci aliquid vesper id.",
"startAt": "2026-06-26T10:06:31.093Z",
"endAt": "2026-06-26T13:49:42.284Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
231,
23,
198,
234,
9
],
"createdAt": "2026-04-19T05:49:38.471Z",
"updatedAt": "2026-05-10T16:44:43.719Z"
},
{
"id": 242,
"ownerUserId": 104,
"title": "Design Critique",
"description": "Sit astrum autem.",
"startAt": "2026-03-10T18:44:20.470Z",
"endAt": "2026-03-11T01:04:03.681Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
69
],
"createdAt": "2026-05-04T12:08:53.660Z",
"updatedAt": "2026-05-10T04:02:49.745Z"
},
{
"id": 243,
"ownerUserId": 104,
"title": "Onboarding Session",
"description": "Spoliatio supplanto cupiditas.",
"startAt": "2026-05-28T02:03:26.042Z",
"endAt": "2026-05-28T04:00:02.006Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
116,
124
],
"createdAt": "2026-05-02T21:18:34.647Z",
"updatedAt": "2026-05-12T07:41:41.087Z"
}
],
"meta": {
"page": 11,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=11&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=12&limit=24",
"prev": "/api/v1/calendar-events?page=10&limit=24"
}
}