calendar-events
calendar-events
Page 10 of 25.
Overview
- Jul19
Security Training
4:16 AM
- Mar9
Demo Day
10:06 PM · Zoom
- Apr14
1:1 with Manager
12:06 AM · Google Meet
- May21
Team Standup
8:22 AM
- Jun8
Team Lunch
12:45 PM · Google Meet
- Jul4
1:1 with Manager
1:09 PM · Rooftop
- Aug15
Customer Interview
9:18 AM
- Aug5
Team Lunch
11:03 AM · Main Boardroom
- Mar19
Architecture Review
12:59 AM · Conference Room B
- Apr4
Strategy Workshop
10:41 AM · Google Meet
- Jul25
Design Critique
5:06 AM · Google Meet
- Mar18
Off-site Planning
11:14 AM · Zoom
- Jun11
Board Meeting
7:33 PM · Rooftop
- May1
Architecture Review
4:16 AM · Office - Floor 3
- Mar3
Onboarding Session
4:16 PM · Rooftop
- Jul5
Quarterly Review
4:33 AM · Cafeteria
- May14
Hiring Interview
2:10 PM
- Jun17
Sprint Planning
12:01 PM
- Apr15
Design Critique
1:33 AM · Cafeteria
- Jul2
Security Training
1:14 AM · Main Boardroom
- Jun11
Security Training
9:52 AM · Rooftop
- Aug6
Off-site Planning
7:43 AM · Conference Room A
- Apr10
Product Review
9:44 PM · Zoom
- May21
Strategy Workshop
4:12 AM
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": 217,
"ownerUserId": 94,
"title": "Security Training",
"description": "Creptio vigilo vesica tero sono deripio vulgo stultus angustus.",
"startAt": "2026-07-19T04:16:18.352Z",
"endAt": "2026-07-19T07:53:42.762Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
90
],
"createdAt": "2026-05-07T11:34:50.306Z",
"updatedAt": "2026-05-21T16:55:34.355Z"
},
{
"id": 218,
"ownerUserId": 94,
"title": "Demo Day",
"description": "Depono alo cupiditas non ab advoco.",
"startAt": "2026-03-09T22:06:41.290Z",
"endAt": "2026-03-10T04:27:11.979Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [],
"createdAt": "2026-04-30T05:03:50.324Z",
"updatedAt": "2026-05-07T12:19:26.412Z"
},
{
"id": 219,
"ownerUserId": 94,
"title": "1:1 with Manager",
"description": "Coaegresco victus minima repudiandae antea.",
"startAt": "2026-04-14T00:06:26.490Z",
"endAt": "2026-04-14T05:04:21.755Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
36
],
"createdAt": "2026-05-08T12:58:54.593Z",
"updatedAt": "2026-05-13T07:15:17.681Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=10&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=11&limit=24",
"prev": "/api/v1/calendar-events?page=9&limit=24"
}
}