calendar-events
calendar-events
Page 9 of 25.
Overview
- Mar2
Quarterly Review
9:26 PM · Google Meet
- Feb21
Quarterly Review
4:39 PM · Cafeteria
- Apr22
Hiring Interview
4:40 AM
- Jul30
Team Standup
12:14 AM · Office - Floor 3
- Jun16
Sprint Planning
10:51 PM
- Jun2
Hiring Interview
1:43 PM
- Jul1
Sprint Planning
4:12 PM · Office - Floor 3
- Jun25
Customer Interview
4:48 AM · Conference Room A
- Jul29
Demo Day
8:12 PM · Conference Room A
- May10
Design Critique
11:30 AM · Microsoft Teams
- May31
Budget Review
10:43 AM · Conference Room B
- Feb26
Team Standup
11:39 AM
- May11
Quarterly Review
8:02 PM · Office - Floor 3
- Mar5
Strategy Workshop
6:02 PM · Microsoft Teams
- Aug10
Product Review
12:20 AM
- Jun8
Product Review
2:08 AM · Cafeteria
- Jun22
1:1 with Manager
6:11 AM
- May27
Design Critique
4:27 AM · Google Meet
- Mar14
Off-site Planning
12:09 AM · Zoom
- Jul27
Architecture Review
3:46 AM · Rooftop
- Apr9
Architecture Review
9:35 AM
- Jun9
Demo Day
12:39 AM · Conference Room B
- Apr4
Team Standup
11:28 PM · Rooftop
- Apr7
Retrospective
2:00 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": 193,
"ownerUserId": 84,
"title": "Quarterly Review",
"description": "Caelestis decet usque.",
"startAt": "2026-03-02T21:26:27.054Z",
"endAt": "2026-03-02T22:45:25.174Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [],
"createdAt": "2026-04-09T02:21:14.703Z",
"updatedAt": "2026-04-15T00:58:18.931Z"
},
{
"id": 194,
"ownerUserId": 84,
"title": "Quarterly Review",
"description": "Somniculosus voro careo beatus.",
"startAt": "2026-02-21T16:39:05.549Z",
"endAt": "2026-02-21T21:37:30.990Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
71,
37,
204
],
"createdAt": "2026-03-15T05:50:52.651Z",
"updatedAt": "2026-03-29T13:01:54.639Z"
},
{
"id": 195,
"ownerUserId": 85,
"title": "Hiring Interview",
"description": "Suffoco aperio bestia somniculosus cattus summisse statua.",
"startAt": "2026-04-22T04:40:03.900Z",
"endAt": "2026-04-22T07:05:14.816Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
108,
192
],
"createdAt": "2026-05-04T01:20:12.889Z",
"updatedAt": "2026-05-08T00:58:13.048Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=9&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=10&limit=24",
"prev": "/api/v1/calendar-events?page=8&limit=24"
}
}