calendar-events
calendar-events
Page 6 of 25.
Overview
- 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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent, ListEnvelope } from "./types/calendar-events";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<CalendarEvent>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events",
params={"limit": 25},
)
data = res.json() Response
{
"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&limit=24",
"first": "/api/v1/calendar-events?page=1&limit=24",
"last": "/api/v1/calendar-events?page=25&limit=24",
"next": "/api/v1/calendar-events?page=7&limit=24",
"prev": "/api/v1/calendar-events?page=5&limit=24"
}
}