calendar-events
calendar-events
Page 8 of 10.
- Team Standup · 5/30/2026
- Product Review · 3/15/2026
- Architecture Review · 2/27/2026
- Team Standup · 6/17/2026
- Sales Call · 4/1/2026
- Team Lunch · 8/9/2026
- Security Training · 4/14/2026
- Product Review · 4/23/2026
- 1:1 with Manager · 8/8/2026
- Budget Review · 8/6/2026
- Strategy Workshop · 2/24/2026
- Board Meeting · 3/12/2026
- Product Review · 4/21/2026
- Product Review · 6/5/2026
- Team Lunch · 7/22/2026
- Team Lunch · 3/21/2026
- Customer Interview · 7/24/2026
- Quarterly Review · 3/28/2026
- Team Lunch · 2/22/2026
- Demo Day · 4/3/2026
- Design Critique · 5/6/2026
- Off-site Planning · 4/19/2026
- Engineering All-Hands · 8/18/2026
- Budget Review · 6/9/2026
- May30
Team Standup
6:19 AM · Zoom
- Mar15
Product Review
9:47 PM · Conference Room A
- Feb27
Architecture Review
9:07 PM · Rooftop
- Jun17
Team Standup
2:12 PM · Conference Room B
- Apr1
Sales Call
1:24 PM · Conference Room A
- Aug9
Team Lunch
3:20 AM · Zoom
- Apr14
Security Training
4:38 AM · Conference Room A
- Apr23
Product Review
10:56 AM · Cafeteria
- Aug8
1:1 with Manager
4:50 AM · Office - Floor 3
- Aug6
Budget Review
2:29 PM · Microsoft Teams
- Feb24
Strategy Workshop
2:44 AM · Zoom
- Mar12
Board Meeting
2:43 PM · Google Meet
- Apr21
Product Review
1:00 AM · Microsoft Teams
- Jun5
Product Review
5:18 AM
- Jul22
Team Lunch
1:22 AM · Cafeteria
- Mar21
Team Lunch
9:56 PM · Rooftop
- Jul24
Customer Interview
11:02 AM · Microsoft Teams
- Mar28
Quarterly Review
6:50 AM · Conference Room A
- Feb22
Team Lunch
4:44 PM · Main Boardroom
- Apr3
Demo Day
6:44 AM · Microsoft Teams
- May6
Design Critique
5:17 AM · Microsoft Teams
- Apr19
Off-site Planning
9:42 AM · Conference Room B
- Aug18
Engineering All-Hands
4:26 AM · Office - Floor 3
- Jun9
Budget Review
11:46 AM
Team Standup
6:19 AM – 1:38 PM
Zoom
Statim commodo cumque conscendo adimpleo valetudo.
Product Review
9:47 PM – 9:47 PM
Conference Room A
Baiulus atavus civitas sursum.
Architecture Review
9:07 PM – 2:40 AM
Rooftop
Pecto stella subito suadeo.
Team Standup
2:12 PM – 2:12 PM
Conference Room B
Tutis color solus verecundia cavus surculus defleo voveo sit.
Sales Call
1:24 PM – 1:24 PM
Conference Room A
Thesis contego apostolus cubitum cimentarius clibanus.
Team Lunch
3:20 AM – 8:22 AM
Zoom
Ademptio temperantia tutis alter dicta vado suffoco cometes.
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": 169,
"ownerUserId": 73,
"title": "Team Standup",
"description": "Statim commodo cumque conscendo adimpleo valetudo.",
"startAt": "2026-05-30T06:19:43.487Z",
"endAt": "2026-05-30T13:38:58.917Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
240,
9,
123,
160
],
"createdAt": "2026-02-23T08:42:41.636Z",
"updatedAt": "2026-04-19T04:47:45.302Z"
},
{
"id": 170,
"ownerUserId": 73,
"title": "Product Review",
"description": "Baiulus atavus civitas sursum.",
"startAt": "2026-03-15T21:47:47.818Z",
"endAt": "2026-03-16T21:47:47.818Z",
"isAllDay": true,
"location": "Conference Room A",
"attendeeUserIds": [
17
],
"createdAt": "2026-02-27T00:27:18.644Z",
"updatedAt": "2026-05-09T04:48:05.455Z"
},
{
"id": 171,
"ownerUserId": 74,
"title": "Architecture Review",
"description": "Pecto stella subito suadeo.",
"startAt": "2026-02-27T21:07:03.720Z",
"endAt": "2026-02-28T02:40:31.250Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
149,
114,
222,
208
],
"createdAt": "2026-03-16T19:03:08.604Z",
"updatedAt": "2026-04-19T17:23:42.766Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=8",
"next": "/api/v1/calendar-events?page=9",
"prev": "/api/v1/calendar-events?page=7"
}
}