calendar-events
calendar-events
Page 10 of 10.
- Security Training · 7/19/2026
- Demo Day · 3/9/2026
- 1:1 with Manager · 4/14/2026
- Team Standup · 5/21/2026
- Team Lunch · 6/8/2026
- 1:1 with Manager · 7/4/2026
- Customer Interview · 8/15/2026
- Team Lunch · 8/5/2026
- Architecture Review · 3/19/2026
- Strategy Workshop · 4/4/2026
- Design Critique · 7/25/2026
- Off-site Planning · 3/18/2026
- Board Meeting · 6/11/2026
- Architecture Review · 5/1/2026
- Onboarding Session · 3/3/2026
- Quarterly Review · 7/5/2026
- Hiring Interview · 5/14/2026
- Sprint Planning · 6/17/2026
- Design Critique · 4/15/2026
- Security Training · 7/2/2026
- Security Training · 6/11/2026
- Off-site Planning · 8/6/2026
- Product Review · 4/10/2026
- Strategy Workshop · 5/21/2026
- Jul19
Security Training
4:16 AM
- Mar9
Demo Day
10:06 PM · Zoom
- Apr14
1:1 with Manager
12:06 AM · Google Meet
- May21
Team Standup
8:22 AM
- Jun8
Team Lunch
12:45 PM · Google Meet
- Jul4
1:1 with Manager
1:09 PM · Rooftop
- Aug15
Customer Interview
9:18 AM
- Aug5
Team Lunch
11:03 AM · Main Boardroom
- Mar19
Architecture Review
12:59 AM · Conference Room B
- Apr4
Strategy Workshop
10:41 AM · Google Meet
- Jul25
Design Critique
5:06 AM · Google Meet
- Mar18
Off-site Planning
11:14 AM · Zoom
- Jun11
Board Meeting
7:33 PM · Rooftop
- May1
Architecture Review
4:16 AM · Office - Floor 3
- Mar3
Onboarding Session
4:16 PM · Rooftop
- Jul5
Quarterly Review
4:33 AM · Cafeteria
- May14
Hiring Interview
2:10 PM
- Jun17
Sprint Planning
12:01 PM
- Apr15
Design Critique
1:33 AM · Cafeteria
- Jul2
Security Training
1:14 AM · Main Boardroom
- Jun11
Security Training
9:52 AM · Rooftop
- Aug6
Off-site Planning
7:43 AM · Conference Room A
- Apr10
Product Review
9:44 PM · Zoom
- May21
Strategy Workshop
4:12 AM
Security Training
4:16 AM – 7:53 AM
Creptio vigilo vesica tero sono deripio vulgo stultus angustus.
Demo Day
10:06 PM – 4:27 AM
Zoom
Depono alo cupiditas non ab advoco.
1:1 with Manager
12:06 AM – 5:04 AM
Google Meet
Coaegresco victus minima repudiandae antea.
Team Standup
8:22 AM – 1:35 PM
Pecus vix abstergo argumentum adhaero textilis dolores vinum ratione centum.
Team Lunch
12:45 PM – 12:45 PM
Google Meet
Acsi sum sequi.
1:1 with Manager
1:09 PM – 2:33 PM
Rooftop
Earum substantia administratio.
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": 217,
"ownerUserId": 94,
"title": "Security Training",
"description": "Creptio vigilo vesica tero sono deripio vulgo stultus angustus.",
"startAt": "2026-07-19T04:16:18.352Z",
"endAt": "2026-07-19T07:53:42.762Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
90
],
"createdAt": "2026-05-07T11:34:50.306Z",
"updatedAt": "2026-05-21T16:55:34.355Z"
},
{
"id": 218,
"ownerUserId": 94,
"title": "Demo Day",
"description": "Depono alo cupiditas non ab advoco.",
"startAt": "2026-03-09T22:06:41.290Z",
"endAt": "2026-03-10T04:27:11.979Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [],
"createdAt": "2026-04-30T05:03:50.324Z",
"updatedAt": "2026-05-07T12:19:26.412Z"
},
{
"id": 219,
"ownerUserId": 94,
"title": "1:1 with Manager",
"description": "Coaegresco victus minima repudiandae antea.",
"startAt": "2026-04-14T00:06:26.490Z",
"endAt": "2026-04-14T05:04:21.755Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
36
],
"createdAt": "2026-05-08T12:58:54.593Z",
"updatedAt": "2026-05-13T07:15:17.681Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=10",
"next": "/api/v1/calendar-events?page=11",
"prev": "/api/v1/calendar-events?page=9"
}
}