calendar-events
calendar-events
Page 6 of 10.
- Off-site Planning · 3/4/2026
- Sales Call · 6/8/2026
- Budget Review · 6/11/2026
- Retrospective · 5/4/2026
- Board Meeting · 3/16/2026
- Team Standup · 5/23/2026
- Product Review · 4/13/2026
- Design Critique · 3/15/2026
- Hiring Interview · 7/1/2026
- Board Meeting · 6/25/2026
- Onboarding Session · 6/12/2026
- Off-site Planning · 8/3/2026
- Retrospective · 6/8/2026
- Sprint Planning · 5/23/2026
- Design Critique · 8/4/2026
- Onboarding Session · 7/17/2026
- Team Lunch · 3/28/2026
- Budget Review · 5/22/2026
- Strategy Workshop · 4/21/2026
- Team Lunch · 8/4/2026
- Sprint Planning · 4/25/2026
- Budget Review · 4/14/2026
- Board Meeting · 7/13/2026
- Strategy Workshop · 6/1/2026
- Mar4
Off-site Planning
3:14 AM · Zoom
- Jun8
Sales Call
5:11 AM
- Jun11
Budget Review
2:19 AM
- May4
Retrospective
7:42 PM
- Mar16
Board Meeting
4:10 PM · Office - Floor 3
- May23
Team Standup
1:09 AM · Rooftop
- Apr13
Product Review
4:58 PM · Zoom
- Mar15
Design Critique
4:44 AM
- Jul1
Hiring Interview
4:35 PM
- Jun25
Board Meeting
4:14 PM · Google Meet
- Jun12
Onboarding Session
12:36 AM · Microsoft Teams
- Aug3
Off-site Planning
12:14 PM · Google Meet
- Jun8
Retrospective
3:46 PM
- May23
Sprint Planning
3:23 PM · Microsoft Teams
- Aug4
Design Critique
5:06 PM · Conference Room B
- Jul17
Onboarding Session
5:53 AM · Microsoft Teams
- Mar28
Team Lunch
11:32 AM · Office - Floor 3
- May22
Budget Review
2:09 PM
- Apr21
Strategy Workshop
9:43 AM
- Aug4
Team Lunch
3:33 AM · Office - Floor 3
- Apr25
Sprint Planning
5:09 AM · Zoom
- Apr14
Budget Review
11:01 AM · Conference Room B
- Jul13
Board Meeting
5:16 AM · Rooftop
- Jun1
Strategy Workshop
5:41 PM · Zoom
Off-site Planning
3:14 AM – 9:42 AM
Zoom
Uterque provident arca nam vulgo quisquam commodo artificiose caelestis.
Sales Call
5:11 AM – 1:08 PM
Vereor carus similique libero laborum curso coma volup.
Budget Review
2:19 AM – 2:19 AM
Celo adsuesco considero corroboro decor caterva.
Retrospective
7:42 PM – 12:11 AM
Error tego traho acer.
Board Meeting
4:10 PM – 4:10 PM
Office - Floor 3
Ademptio amita labore vapulus aranea vicissitudo vilicus tubineus vulgivagus porro.
Team Standup
1:09 AM – 7:44 AM
Rooftop
Adamo ater alter.
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": 121,
"ownerUserId": 52,
"title": "Off-site Planning",
"description": "Uterque provident arca nam vulgo quisquam commodo artificiose caelestis.",
"startAt": "2026-03-04T03:14:50.461Z",
"endAt": "2026-03-04T09:42:41.155Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
82
],
"createdAt": "2026-05-17T22:42:48.359Z",
"updatedAt": "2026-05-21T15:49:31.213Z"
},
{
"id": 122,
"ownerUserId": 52,
"title": "Sales Call",
"description": "Vereor carus similique libero laborum curso coma volup.",
"startAt": "2026-06-08T05:11:35.740Z",
"endAt": "2026-06-08T13:08:40.097Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
170
],
"createdAt": "2026-05-01T18:58:15.535Z",
"updatedAt": "2026-05-09T23:04:58.502Z"
},
{
"id": 123,
"ownerUserId": 52,
"title": "Budget Review",
"description": "Celo adsuesco considero corroboro decor caterva.",
"startAt": "2026-06-11T02:19:30.214Z",
"endAt": "2026-06-12T02:19:30.214Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
65,
146,
130,
99
],
"createdAt": "2026-02-26T21:05:58.804Z",
"updatedAt": "2026-03-19T06:25:57.716Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=6",
"next": "/api/v1/calendar-events?page=7",
"prev": "/api/v1/calendar-events?page=5"
}
}