calendar-events
calendar-events
Page 9 of 10.
- Quarterly Review · 3/2/2026
- Quarterly Review · 2/21/2026
- Hiring Interview · 4/22/2026
- Team Standup · 7/30/2026
- Sprint Planning · 6/16/2026
- Hiring Interview · 6/2/2026
- Sprint Planning · 7/1/2026
- Customer Interview · 6/25/2026
- Demo Day · 7/29/2026
- Design Critique · 5/10/2026
- Budget Review · 5/31/2026
- Team Standup · 2/26/2026
- Quarterly Review · 5/11/2026
- Strategy Workshop · 3/5/2026
- Product Review · 8/10/2026
- Product Review · 6/8/2026
- 1:1 with Manager · 6/22/2026
- Design Critique · 5/27/2026
- Off-site Planning · 3/14/2026
- Architecture Review · 7/27/2026
- Architecture Review · 4/9/2026
- Demo Day · 6/9/2026
- Team Standup · 4/4/2026
- Retrospective · 4/7/2026
- Mar2
Quarterly Review
9:26 PM · Google Meet
- Feb21
Quarterly Review
4:39 PM · Cafeteria
- Apr22
Hiring Interview
4:40 AM
- Jul30
Team Standup
12:14 AM · Office - Floor 3
- Jun16
Sprint Planning
10:51 PM
- Jun2
Hiring Interview
1:43 PM
- Jul1
Sprint Planning
4:12 PM · Office - Floor 3
- Jun25
Customer Interview
4:48 AM · Conference Room A
- Jul29
Demo Day
8:12 PM · Conference Room A
- May10
Design Critique
11:30 AM · Microsoft Teams
- May31
Budget Review
10:43 AM · Conference Room B
- Feb26
Team Standup
11:39 AM
- May11
Quarterly Review
8:02 PM · Office - Floor 3
- Mar5
Strategy Workshop
6:02 PM · Microsoft Teams
- Aug10
Product Review
12:20 AM
- Jun8
Product Review
2:08 AM · Cafeteria
- Jun22
1:1 with Manager
6:11 AM
- May27
Design Critique
4:27 AM · Google Meet
- Mar14
Off-site Planning
12:09 AM · Zoom
- Jul27
Architecture Review
3:46 AM · Rooftop
- Apr9
Architecture Review
9:35 AM
- Jun9
Demo Day
12:39 AM · Conference Room B
- Apr4
Team Standup
11:28 PM · Rooftop
- Apr7
Retrospective
2:00 PM
Quarterly Review
9:26 PM – 10:45 PM
Google Meet
Caelestis decet usque.
Quarterly Review
4:39 PM – 9:37 PM
Cafeteria
Somniculosus voro careo beatus.
Hiring Interview
4:40 AM – 7:05 AM
Suffoco aperio bestia somniculosus cattus summisse statua.
Team Standup
12:14 AM – 12:14 AM
Office - Floor 3
Maxime tenus amitto.
Sprint Planning
10:51 PM – 10:51 PM
Volaticus amet armarium cenaculum vivo sponte condico sollers audacia via.
Hiring Interview
1:43 PM – 3:13 PM
Admoneo adfectus dicta statua absorbeo capillus depopulo inventore vulgaris.
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/calendar-events?limit=25"const res = await fetch(
"https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = await res.json();import type { CalendarEvent, ListEnvelope } from "https://example-data.com/types/calendar-events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<CalendarEvent>;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 193,
"ownerUserId": 84,
"title": "Quarterly Review",
"description": "Caelestis decet usque.",
"startAt": "2026-03-02T21:26:27.054Z",
"endAt": "2026-03-02T22:45:25.174Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [],
"createdAt": "2026-04-09T02:21:14.703Z",
"updatedAt": "2026-04-15T00:58:18.931Z"
},
{
"id": 194,
"ownerUserId": 84,
"title": "Quarterly Review",
"description": "Somniculosus voro careo beatus.",
"startAt": "2026-02-21T16:39:05.549Z",
"endAt": "2026-02-21T21:37:30.990Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
71,
37,
204
],
"createdAt": "2026-03-15T05:50:52.651Z",
"updatedAt": "2026-03-29T13:01:54.639Z"
},
{
"id": 195,
"ownerUserId": 85,
"title": "Hiring Interview",
"description": "Suffoco aperio bestia somniculosus cattus summisse statua.",
"startAt": "2026-04-22T04:40:03.900Z",
"endAt": "2026-04-22T07:05:14.816Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
108,
192
],
"createdAt": "2026-05-04T01:20:12.889Z",
"updatedAt": "2026-05-08T00:58:13.048Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=9",
"next": "/api/v1/calendar-events?page=10",
"prev": "/api/v1/calendar-events?page=8"
}
}