calendar-events
calendar-events
Page 21 of 25.
Overview
- May19
Hiring Interview
4:38 PM · Conference Room A
- Jul7
Design Critique
3:43 PM · Cafeteria
- Apr12
Retrospective
3:03 AM
- Aug19
Strategy Workshop
3:22 PM · Cafeteria
- Mar24
Off-site Planning
12:08 AM · Conference Room B
- Mar24
Architecture Review
3:46 AM
- Jul2
Board Meeting
3:28 PM
- Aug11
Demo Day
8:29 PM
- May1
Team Standup
3:13 AM · Cafeteria
- Jun2
Retrospective
2:43 PM
- Apr26
Strategy Workshop
12:36 PM · Microsoft Teams
- Apr30
Quarterly Review
10:49 AM · Zoom
- Mar16
Team Lunch
11:18 PM
- May28
Security Training
4:19 AM · Google Meet
- Jul7
Customer Interview
4:56 PM · Google Meet
- Mar2
Team Lunch
3:06 PM
- Jun17
Team Standup
12:15 PM · Zoom
- Jul13
Demo Day
2:56 AM · Conference Room B
- Aug14
Customer Interview
5:05 PM
- Apr1
Board Meeting
10:37 AM · Google Meet
- Jun9
Customer Interview
8:27 AM
- May24
Security Training
9:07 AM
- Aug8
Sales Call
2:33 AM · Cafeteria
- May25
Hiring Interview
4:33 PM
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": 481,
"ownerUserId": 197,
"title": "Hiring Interview",
"description": "Argumentum deputo caries confugo.",
"startAt": "2026-05-19T16:38:10.045Z",
"endAt": "2026-05-19T21:18:45.555Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
149,
146
],
"createdAt": "2026-04-16T08:20:34.091Z",
"updatedAt": "2026-04-28T11:16:26.885Z"
},
{
"id": 482,
"ownerUserId": 197,
"title": "Design Critique",
"description": "Decerno conscendo denego utor nisi thorax pariatur incidunt tumultus.",
"startAt": "2026-07-07T15:43:35.563Z",
"endAt": "2026-07-08T15:43:35.563Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
232,
14
],
"createdAt": "2026-04-01T04:16:50.328Z",
"updatedAt": "2026-04-11T02:39:20.245Z"
},
{
"id": 483,
"ownerUserId": 197,
"title": "Retrospective",
"description": "Subito decens demulceo bos nulla arbustum audio.",
"startAt": "2026-04-12T03:03:48.893Z",
"endAt": "2026-04-12T04:51:37.954Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
78,
159
],
"createdAt": "2026-03-17T20:35:13.492Z",
"updatedAt": "2026-05-19T22:17:17.306Z"
}
],
"meta": {
"page": 21,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=21&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=22&limit=24",
"prev": "/api/v1/calendar-events?page=20&limit=24"
}
}