calendar-events
calendar-events
Page 15 of 25.
Overview
- Apr21
Customer Interview
7:03 AM · Cafeteria
- Jul8
Customer Interview
5:02 AM · Main Boardroom
- Jun11
Engineering All-Hands
9:42 AM · Office - Floor 3
- Apr7
Team Lunch
6:00 AM · Main Boardroom
- May20
1:1 with Manager
12:10 AM · Microsoft Teams
- May10
Team Lunch
2:45 AM · Main Boardroom
- May3
Team Lunch
4:24 AM · Zoom
- Apr14
Retrospective
4:42 PM · Office - Floor 3
- Apr17
Product Review
12:45 AM · Google Meet
- Mar3
Team Standup
1:40 PM · Zoom
- Mar9
Engineering All-Hands
12:34 PM
- May7
Board Meeting
5:40 PM
- Jul3
Architecture Review
3:30 AM
- Apr4
Engineering All-Hands
11:07 PM · Rooftop
- Jun26
Security Training
4:27 AM · Rooftop
- Apr5
Sprint Planning
10:45 AM
- May11
1:1 with Manager
9:18 AM · Microsoft Teams
- Jun29
Budget Review
6:21 PM · Main Boardroom
- May25
Quarterly Review
9:14 PM · Office - Floor 3
- Mar30
Onboarding Session
7:20 AM · Main Boardroom
- May2
Team Lunch
1:28 AM · Microsoft Teams
- Mar3
Design Critique
4:46 PM
- Mar27
Architecture Review
2:51 PM · Google Meet
- Jul11
Design Critique
2:10 PM · Main Boardroom
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": 337,
"ownerUserId": 140,
"title": "Customer Interview",
"description": "Sopor derelinquo accusamus conturbo cras desipio ustulo compello.",
"startAt": "2026-04-21T07:03:03.654Z",
"endAt": "2026-04-22T07:03:03.654Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
95,
41
],
"createdAt": "2026-05-14T22:47:53.435Z",
"updatedAt": "2026-05-20T22:04:33.456Z"
},
{
"id": 338,
"ownerUserId": 140,
"title": "Customer Interview",
"description": "Arceo benevolentia vulticulus ultra.",
"startAt": "2026-07-08T05:02:00.928Z",
"endAt": "2026-07-08T07:56:57.402Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
142,
169,
18,
102,
171
],
"createdAt": "2026-05-10T11:49:39.349Z",
"updatedAt": "2026-05-16T12:27:49.543Z"
},
{
"id": 339,
"ownerUserId": 140,
"title": "Engineering All-Hands",
"description": "Culpa quae delectatio umerus catena alias.",
"startAt": "2026-06-11T09:42:46.263Z",
"endAt": "2026-06-11T11:31:53.117Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
73,
163,
143,
199
],
"createdAt": "2026-05-19T15:40:02.586Z",
"updatedAt": "2026-05-21T09:03:02.249Z"
}
],
"meta": {
"page": 15,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=15&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=16&limit=24",
"prev": "/api/v1/calendar-events?page=14&limit=24"
}
}