calendar-events
calendar-events
Page 7 of 10.
- Engineering All-Hands · 4/25/2026
- Retrospective · 6/27/2026
- Team Standup · 7/19/2026
- Design Critique · 6/4/2026
- Customer Interview · 5/13/2026
- Security Training · 3/6/2026
- Engineering All-Hands · 7/28/2026
- Security Training · 5/12/2026
- Team Lunch · 7/14/2026
- Budget Review · 3/29/2026
- Team Lunch · 5/6/2026
- Security Training · 6/9/2026
- Engineering All-Hands · 5/9/2026
- Sales Call · 6/2/2026
- Team Lunch · 3/22/2026
- Budget Review · 6/18/2026
- Security Training · 3/7/2026
- Team Standup · 5/1/2026
- Strategy Workshop · 6/11/2026
- Hiring Interview · 3/3/2026
- Sales Call · 4/26/2026
- Design Critique · 4/11/2026
- Architecture Review · 3/17/2026
- Engineering All-Hands · 7/28/2026
- Apr25
Engineering All-Hands
1:11 PM
- Jun27
Retrospective
10:43 PM · Cafeteria
- Jul19
Team Standup
12:41 PM · Microsoft Teams
- Jun4
Design Critique
10:54 PM · Main Boardroom
- May13
Customer Interview
10:28 AM · Office - Floor 3
- Mar6
Security Training
12:32 AM
- Jul28
Engineering All-Hands
4:24 AM · Cafeteria
- May12
Security Training
8:10 PM · Rooftop
- Jul14
Team Lunch
12:50 PM · Google Meet
- Mar29
Budget Review
8:54 AM · Microsoft Teams
- May6
Team Lunch
12:25 PM · Microsoft Teams
- Jun9
Security Training
4:36 PM · Zoom
- May9
Engineering All-Hands
11:24 PM
- Jun2
Sales Call
1:48 AM · Google Meet
- Mar22
Team Lunch
12:37 AM · Conference Room A
- Jun18
Budget Review
2:24 PM
- Mar7
Security Training
11:16 PM · Cafeteria
- May1
Team Standup
5:49 AM
- Jun11
Strategy Workshop
11:43 PM · Cafeteria
- Mar3
Hiring Interview
10:01 PM
- Apr26
Sales Call
3:20 AM · Main Boardroom
- Apr11
Design Critique
9:20 PM · Conference Room B
- Mar17
Architecture Review
8:39 AM · Cafeteria
- Jul28
Engineering All-Hands
3:37 AM · Microsoft Teams
Engineering All-Hands
1:11 PM – 1:11 PM
Vinco aperio antea usus arbustum.
Retrospective
10:43 PM – 2:00 AM
Cafeteria
Crapula accedo conscendo.
Team Standup
12:41 PM – 8:39 PM
Microsoft Teams
Centum solvo quam maxime tactus vilicus derelinquo.
Design Critique
10:54 PM – 1:06 AM
Main Boardroom
Articulus caelum trado bonus nemo comprehendo strues tempora vomer verbera.
Customer Interview
10:28 AM – 5:52 PM
Office - Floor 3
Tantillus ceno voveo vehemens adstringo capitulus creta beneficium.
Security Training
12:32 AM – 8:02 AM
Sustineo adeptio credo cilicium compello somnus conscendo ademptio coniecto ara.
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": 145,
"ownerUserId": 62,
"title": "Engineering All-Hands",
"description": "Vinco aperio antea usus arbustum.",
"startAt": "2026-04-25T13:11:20.956Z",
"endAt": "2026-04-26T13:11:20.956Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
3,
184,
235,
138
],
"createdAt": "2026-04-09T13:17:36.584Z",
"updatedAt": "2026-05-02T18:13:23.286Z"
},
{
"id": 146,
"ownerUserId": 62,
"title": "Retrospective",
"description": "Crapula accedo conscendo.",
"startAt": "2026-06-27T22:43:41.837Z",
"endAt": "2026-06-28T02:00:28.162Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
164,
69,
219,
169,
148
],
"createdAt": "2026-03-22T07:17:39.111Z",
"updatedAt": "2026-04-05T01:38:03.911Z"
},
{
"id": 147,
"ownerUserId": 62,
"title": "Team Standup",
"description": "Centum solvo quam maxime tactus vilicus derelinquo.",
"startAt": "2026-07-19T12:41:35.111Z",
"endAt": "2026-07-19T20:39:06.648Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
63,
89
],
"createdAt": "2026-04-14T11:28:01.618Z",
"updatedAt": "2026-04-26T22:11:05.351Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=7",
"next": "/api/v1/calendar-events?page=8",
"prev": "/api/v1/calendar-events?page=6"
}
}