calendar-events
calendar-events
Page 19 of 25.
Overview
- Jun8
Hiring Interview
1:49 AM · Main Boardroom
- Jul31
Design Critique
6:48 PM · Cafeteria
- May29
Onboarding Session
5:33 AM · Zoom
- Jul17
Architecture Review
6:08 PM · Zoom
- Mar9
Engineering All-Hands
11:12 PM · Office - Floor 3
- Mar18
Architecture Review
5:51 AM · Microsoft Teams
- Jul29
Demo Day
4:27 AM · Main Boardroom
- Apr28
Sprint Planning
5:39 PM · Microsoft Teams
- Mar28
Product Review
6:30 AM · Rooftop
- Jul16
Off-site Planning
4:48 PM · Microsoft Teams
- Feb25
1:1 with Manager
2:10 AM · Conference Room B
- May24
Design Critique
12:28 PM · Conference Room A
- Apr22
Team Lunch
1:54 AM · Google Meet
- Mar19
Sales Call
2:26 AM · Office - Floor 3
- Apr13
Quarterly Review
8:46 AM
- Mar16
Team Standup
4:52 PM · Main Boardroom
- Feb21
Hiring Interview
10:10 AM · Zoom
- Jul23
Retrospective
4:37 PM
- Apr12
Security Training
11:14 AM
- Apr2
Strategy Workshop
11:26 PM · Conference Room A
- May22
Architecture Review
4:00 PM · Rooftop
- May6
Architecture Review
10:19 AM · Zoom
- Jun4
Demo Day
9:02 PM · Cafeteria
- Jul4
Onboarding Session
4:13 PM · Main Boardroom
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": 433,
"ownerUserId": 177,
"title": "Hiring Interview",
"description": "Debitis vulariter color dicta baiulus tracto ratione.",
"startAt": "2026-06-08T01:49:25.999Z",
"endAt": "2026-06-08T03:35:54.252Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
141
],
"createdAt": "2026-05-16T05:08:20.463Z",
"updatedAt": "2026-05-16T13:36:51.429Z"
},
{
"id": 434,
"ownerUserId": 178,
"title": "Design Critique",
"description": "Denuncio constans condico acsi occaecati.",
"startAt": "2026-07-31T18:48:33.452Z",
"endAt": "2026-08-01T18:48:33.452Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
143,
106,
180,
195,
61
],
"createdAt": "2026-03-09T09:30:18.446Z",
"updatedAt": "2026-05-04T17:54:42.796Z"
},
{
"id": 435,
"ownerUserId": 178,
"title": "Onboarding Session",
"description": "Sto debilito deinde cunctatio thorax arx.",
"startAt": "2026-05-29T05:33:18.812Z",
"endAt": "2026-05-30T05:33:18.812Z",
"isAllDay": true,
"location": "Zoom",
"attendeeUserIds": [
59,
140,
22
],
"createdAt": "2026-03-09T17:04:01.671Z",
"updatedAt": "2026-04-03T23:02:27.804Z"
}
],
"meta": {
"page": 19,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=19&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=20&limit=24",
"prev": "/api/v1/calendar-events?page=18&limit=24"
}
}