calendar-events
calendar-events
Page 3 of 10.
- Board Meeting · 7/11/2026
- Team Standup · 4/1/2026
- Onboarding Session · 6/12/2026
- Off-site Planning · 7/25/2026
- Product Review · 8/12/2026
- 1:1 with Manager · 5/25/2026
- Hiring Interview · 4/8/2026
- Architecture Review · 2/25/2026
- Design Critique · 3/16/2026
- Sprint Planning · 5/11/2026
- Sprint Planning · 3/31/2026
- Engineering All-Hands · 5/20/2026
- Strategy Workshop · 5/2/2026
- Architecture Review · 6/2/2026
- Engineering All-Hands · 7/10/2026
- Sprint Planning · 6/7/2026
- Sales Call · 8/2/2026
- Engineering All-Hands · 2/27/2026
- 1:1 with Manager · 3/14/2026
- 1:1 with Manager · 6/14/2026
- Sales Call · 5/13/2026
- Sprint Planning · 5/15/2026
- Retrospective · 8/13/2026
- Retrospective · 5/30/2026
- Jul11
Board Meeting
6:19 PM · Office - Floor 3
- Apr1
Team Standup
10:36 PM · Conference Room B
- Jun12
Onboarding Session
8:03 PM · Main Boardroom
- Jul25
Off-site Planning
2:13 PM
- Aug12
Product Review
1:18 PM · Conference Room A
- May25
1:1 with Manager
5:01 PM
- Apr8
Hiring Interview
6:28 AM · Main Boardroom
- Feb25
Architecture Review
2:47 PM · Microsoft Teams
- Mar16
Design Critique
11:36 AM · Zoom
- May11
Sprint Planning
5:50 AM
- Mar31
Sprint Planning
1:42 PM · Microsoft Teams
- May20
Engineering All-Hands
4:56 PM · Rooftop
- May2
Strategy Workshop
10:11 AM · Microsoft Teams
- Jun2
Architecture Review
10:11 AM
- Jul10
Engineering All-Hands
10:25 PM · Microsoft Teams
- Jun7
Sprint Planning
4:48 PM
- Aug2
Sales Call
12:37 PM · Rooftop
- Feb27
Engineering All-Hands
1:49 AM
- Mar14
1:1 with Manager
7:38 PM · Conference Room A
- Jun14
1:1 with Manager
12:14 AM
- May13
Sales Call
5:38 PM · Cafeteria
- May15
Sprint Planning
4:16 AM · Zoom
- Aug13
Retrospective
4:27 AM · Cafeteria
- May30
Retrospective
9:28 AM · Zoom
Board Meeting
6:19 PM – 8:21 PM
Office - Floor 3
Natus socius demergo eaque comitatus suggero expedita.
Team Standup
10:36 PM – 1:03 AM
Conference Room B
Audacia demens volaticus clamo summisse laborum bestia ad angulus.
Onboarding Session
8:03 PM – 3:17 AM
Main Boardroom
Praesentium approbo sustineo molestiae ultra benevolentia coadunatio.
Off-site Planning
2:13 PM – 6:47 PM
Vesica tibi acervus caput aestas.
Product Review
1:18 PM – 6:50 PM
Conference Room A
Carcer volva eveniet appello ascisco crudelis sperno.
1:1 with Manager
5:01 PM – 7:39 PM
Correptius alii crinis architecto eaque.
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": 49,
"ownerUserId": 24,
"title": "Board Meeting",
"description": "Natus socius demergo eaque comitatus suggero expedita.",
"startAt": "2026-07-11T18:19:17.788Z",
"endAt": "2026-07-11T20:21:23.571Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [],
"createdAt": "2026-03-05T20:22:03.781Z",
"updatedAt": "2026-03-13T03:57:24.564Z"
},
{
"id": 50,
"ownerUserId": 25,
"title": "Team Standup",
"description": "Audacia demens volaticus clamo summisse laborum bestia ad angulus.",
"startAt": "2026-04-01T22:36:06.737Z",
"endAt": "2026-04-02T01:03:34.254Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
106
],
"createdAt": "2026-05-03T04:11:20.073Z",
"updatedAt": "2026-05-08T20:43:42.651Z"
},
{
"id": 51,
"ownerUserId": 25,
"title": "Onboarding Session",
"description": "Praesentium approbo sustineo molestiae ultra benevolentia coadunatio.",
"startAt": "2026-06-12T20:03:17.336Z",
"endAt": "2026-06-13T03:17:42.021Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
140
],
"createdAt": "2026-04-05T01:59:27.871Z",
"updatedAt": "2026-04-27T09:02:05.766Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=3",
"next": "/api/v1/calendar-events?page=4",
"prev": "/api/v1/calendar-events?page=2"
}
}