calendar-events
calendar-events
Page 20 of 25.
Overview
- May13
Team Lunch
11:35 AM · Cafeteria
- Apr5
Team Standup
2:55 PM
- May12
Sales Call
5:21 AM · Rooftop
- Aug8
Sales Call
4:51 AM · Rooftop
- Aug18
Design Critique
11:51 AM · Zoom
- Jul7
1:1 with Manager
9:50 PM
- Jun30
Team Lunch
7:12 AM
- Jul27
Sales Call
8:33 AM · Conference Room A
- Aug9
Demo Day
9:31 PM · Cafeteria
- Mar9
Team Standup
7:40 AM · Google Meet
- Mar25
Off-site Planning
3:58 PM
- Mar1
Product Review
11:01 PM · Microsoft Teams
- Jun20
Retrospective
7:49 PM · Microsoft Teams
- Apr24
Off-site Planning
4:41 AM · Google Meet
- Jul25
Onboarding Session
8:53 AM · Rooftop
- Jun11
Board Meeting
10:31 AM · Cafeteria
- Mar19
Quarterly Review
9:18 PM · Zoom
- Jul30
Board Meeting
3:10 AM · Google Meet
- Aug9
Product Review
7:16 PM · Cafeteria
- Jun8
Demo Day
2:18 PM · Cafeteria
- Mar28
Off-site Planning
7:23 AM · Zoom
- May15
Budget Review
9:07 PM · Microsoft Teams
- Aug15
Off-site Planning
2:12 PM · Conference Room A
- Apr13
Onboarding Session
1:54 PM · Google Meet
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": 457,
"ownerUserId": 186,
"title": "Team Lunch",
"description": "Theologus suscipit peior aufero vesper articulus deripio antiquus amo sto.",
"startAt": "2026-05-13T11:35:43.497Z",
"endAt": "2026-05-13T15:18:36.434Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
89,
146
],
"createdAt": "2026-05-01T10:43:13.517Z",
"updatedAt": "2026-05-11T20:48:12.613Z"
},
{
"id": 458,
"ownerUserId": 186,
"title": "Team Standup",
"description": "Uter tabesco ver valde strenuus usitas vitae sint aeternus.",
"startAt": "2026-04-05T14:55:57.783Z",
"endAt": "2026-04-05T17:17:48.069Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-03-14T22:11:32.794Z",
"updatedAt": "2026-04-19T20:35:55.308Z"
},
{
"id": 459,
"ownerUserId": 187,
"title": "Sales Call",
"description": "Cogo nemo decens casso.",
"startAt": "2026-05-12T05:21:02.379Z",
"endAt": "2026-05-12T11:25:05.528Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
217,
3,
166
],
"createdAt": "2026-02-24T01:18:38.912Z",
"updatedAt": "2026-04-16T16:25:06.725Z"
}
],
"meta": {
"page": 20,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=20&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=21&limit=24",
"prev": "/api/v1/calendar-events?page=19&limit=24"
}
}