calendar-events
calendar-events
Page 5 of 10.
- Product Review · 3/25/2026
- Budget Review · 4/23/2026
- Hiring Interview · 3/18/2026
- Engineering All-Hands · 8/2/2026
- Sprint Planning · 3/19/2026
- Engineering All-Hands · 3/8/2026
- Off-site Planning · 7/30/2026
- Design Critique · 6/23/2026
- Demo Day · 2/21/2026
- Hiring Interview · 4/10/2026
- 1:1 with Manager · 7/26/2026
- Team Standup · 7/20/2026
- Team Lunch · 3/8/2026
- Retrospective · 7/3/2026
- Sales Call · 2/24/2026
- Team Standup · 5/19/2026
- Engineering All-Hands · 4/10/2026
- Off-site Planning · 3/14/2026
- Board Meeting · 3/15/2026
- Quarterly Review · 4/26/2026
- Product Review · 5/23/2026
- Hiring Interview · 6/3/2026
- Hiring Interview · 3/20/2026
- Sales Call · 8/11/2026
- Mar25
Product Review
1:13 AM
- Apr23
Budget Review
4:18 PM · Cafeteria
- Mar18
Hiring Interview
5:09 AM · Main Boardroom
- Aug2
Engineering All-Hands
6:02 AM
- Mar19
Sprint Planning
9:51 AM
- Mar8
Engineering All-Hands
7:10 PM · Conference Room A
- Jul30
Off-site Planning
2:08 AM · Rooftop
- Jun23
Design Critique
9:19 AM
- Feb21
Demo Day
4:40 AM · Microsoft Teams
- Apr10
Hiring Interview
7:08 PM · Zoom
- Jul26
1:1 with Manager
8:45 PM · Microsoft Teams
- Jul20
Team Standup
3:55 AM
- Mar8
Team Lunch
7:38 PM · Main Boardroom
- Jul3
Retrospective
9:15 PM · Conference Room A
- Feb24
Sales Call
6:16 PM
- May19
Team Standup
9:29 PM · Rooftop
- Apr10
Engineering All-Hands
7:48 AM · Office - Floor 3
- Mar14
Off-site Planning
8:38 PM · Zoom
- Mar15
Board Meeting
5:00 AM · Cafeteria
- Apr26
Quarterly Review
12:08 PM · Microsoft Teams
- May23
Product Review
10:30 AM · Cafeteria
- Jun3
Hiring Interview
12:10 PM · Google Meet
- Mar20
Hiring Interview
5:32 AM · Conference Room A
- Aug11
Sales Call
11:15 PM · Microsoft Teams
Product Review
1:13 AM – 8:00 AM
Copia curatio bellicus aedificium cilicium crinis torqueo vehemens victus triduana.
Budget Review
4:18 PM – 5:27 PM
Cafeteria
Contego argentum tristis adficio tremo modi veniam ventosus catena aeneus.
Hiring Interview
5:09 AM – 10:10 AM
Main Boardroom
Vetus crustulum ducimus asper aiunt asporto.
Engineering All-Hands
6:02 AM – 6:02 AM
Aiunt valetudo vicinus unde vallum sumo certus atqui.
Sprint Planning
9:51 AM – 9:51 AM
Accusamus crepusculum casus summisse statim adeo amicitia.
Engineering All-Hands
7:10 PM – 2:26 AM
Conference Room A
Conscendo esse spiritus arguo crepusculum corroboro.
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": 97,
"ownerUserId": 40,
"title": "Product Review",
"description": "Copia curatio bellicus aedificium cilicium crinis torqueo vehemens victus triduana.",
"startAt": "2026-03-25T01:13:33.803Z",
"endAt": "2026-03-25T08:00:46.710Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
242,
221,
222,
187,
132
],
"createdAt": "2026-04-02T03:36:11.565Z",
"updatedAt": "2026-04-30T23:50:22.397Z"
},
{
"id": 98,
"ownerUserId": 40,
"title": "Budget Review",
"description": "Contego argentum tristis adficio tremo modi veniam ventosus catena aeneus.",
"startAt": "2026-04-23T16:18:27.825Z",
"endAt": "2026-04-23T17:27:55.219Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
30,
24,
216,
215,
166
],
"createdAt": "2026-03-18T23:32:41.267Z",
"updatedAt": "2026-05-11T15:44:40.953Z"
},
{
"id": 99,
"ownerUserId": 40,
"title": "Hiring Interview",
"description": "Vetus crustulum ducimus asper aiunt asporto.",
"startAt": "2026-03-18T05:09:19.121Z",
"endAt": "2026-03-18T10:10:55.329Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
147,
99,
5
],
"createdAt": "2026-05-16T14:00:59.788Z",
"updatedAt": "2026-05-19T10:45:02.047Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=5",
"next": "/api/v1/calendar-events?page=6",
"prev": "/api/v1/calendar-events?page=4"
}
}