calendar-events
calendar-events
Page 16 of 25.
Overview
- Aug2
Engineering All-Hands
12:29 AM · Zoom
- Jul24
Board Meeting
12:43 PM · Rooftop
- Jun10
Engineering All-Hands
6:17 PM
- Jul16
Retrospective
9:44 PM · Main Boardroom
- May21
Product Review
12:11 AM · Rooftop
- Jun7
Sales Call
3:47 PM · Cafeteria
- Jul1
Budget Review
2:19 AM · Cafeteria
- Aug6
Sprint Planning
4:52 AM · Conference Room A
- Mar11
Retrospective
2:34 PM · Microsoft Teams
- Apr30
Demo Day
7:32 PM · Conference Room B
- Aug8
Engineering All-Hands
9:34 PM
- Feb28
Strategy Workshop
5:41 PM · Main Boardroom
- Mar8
Board Meeting
9:07 PM · Conference Room A
- Jun19
Design Critique
9:32 AM · Office - Floor 3
- Jul5
Demo Day
2:52 PM
- Jun23
Strategy Workshop
5:28 PM · Conference Room B
- Apr28
Customer Interview
3:31 AM · Main Boardroom
- Apr15
Strategy Workshop
5:13 AM · Conference Room A
- May1
Architecture Review
1:39 AM
- Jun2
Customer Interview
1:44 AM
- Jul29
Demo Day
6:26 PM
- May15
Retrospective
7:02 PM · Conference Room A
- Aug15
Team Lunch
8:41 PM · Office - Floor 3
- May3
Hiring Interview
9:39 PM · Rooftop
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": 361,
"ownerUserId": 148,
"title": "Engineering All-Hands",
"description": "Decimus solvo torrens tonsor aegrotatio tubineus maiores tego impedit basium.",
"startAt": "2026-08-02T00:29:56.758Z",
"endAt": "2026-08-02T06:27:52.476Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
244,
50,
108,
135,
213
],
"createdAt": "2026-02-25T02:34:49.920Z",
"updatedAt": "2026-05-03T23:32:02.494Z"
},
{
"id": 362,
"ownerUserId": 148,
"title": "Board Meeting",
"description": "Basium tracto arca virga.",
"startAt": "2026-07-24T12:43:49.252Z",
"endAt": "2026-07-24T16:24:25.429Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
157,
198
],
"createdAt": "2026-02-26T12:05:44.976Z",
"updatedAt": "2026-03-15T15:18:04.319Z"
},
{
"id": 363,
"ownerUserId": 148,
"title": "Engineering All-Hands",
"description": "Terminatio carus angelus.",
"startAt": "2026-06-10T18:17:52.886Z",
"endAt": "2026-06-10T23:26:29.911Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
184,
191,
25,
58,
46
],
"createdAt": "2026-03-29T22:05:25.917Z",
"updatedAt": "2026-05-21T18:41:29.977Z"
}
],
"meta": {
"page": 16,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=16&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=17&limit=24",
"prev": "/api/v1/calendar-events?page=15&limit=24"
}
}