calendar-events
calendar-events
Page 25 of 25.
Overview
- Apr2
Quarterly Review
10:52 AM · Conference Room B
- Jun18
Off-site Planning
1:10 PM · Main Boardroom
- May14
Product Review
6:18 AM · Google Meet
- Apr22
Retrospective
6:29 PM · Zoom
- Apr23
Design Critique
1:09 AM · Conference Room B
- Mar21
Team Lunch
4:44 PM · Rooftop
- Aug13
Board Meeting
6:28 PM · Google Meet
- Mar16
Quarterly Review
2:55 AM · Office - Floor 3
- Mar22
Budget Review
10:50 AM · Zoom
- Apr20
Onboarding Session
2:56 AM · Rooftop
- May26
Off-site Planning
9:22 PM · Cafeteria
- May24
Team Lunch
7:42 PM · Cafeteria
- May18
Team Standup
5:29 PM · Main Boardroom
- Aug12
Security Training
12:38 AM · Office - Floor 3
- May17
Security Training
5:22 PM · Office - Floor 3
- Feb28
Sales Call
2:44 PM · Rooftop
- May18
Strategy Workshop
2:06 PM · Zoom
- Mar10
Retrospective
6:05 AM
- Mar2
Design Critique
12:06 AM · Main Boardroom
- Apr26
Sprint Planning
3:20 PM · Cafeteria
- Jun15
Customer Interview
2:14 AM · Main Boardroom
- Mar2
Product Review
1:48 AM · Rooftop
- Apr15
Team Lunch
1:20 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": 577,
"ownerUserId": 239,
"title": "Quarterly Review",
"description": "Creo absens adipisci tergo subito tertius adfectus placeat cresco.",
"startAt": "2026-04-02T10:52:48.402Z",
"endAt": "2026-04-02T12:35:09.230Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
102,
61,
108,
56
],
"createdAt": "2026-02-21T23:08:25.120Z",
"updatedAt": "2026-02-24T16:55:26.768Z"
},
{
"id": 578,
"ownerUserId": 240,
"title": "Off-site Planning",
"description": "Tribuo expedita carbo.",
"startAt": "2026-06-18T13:10:28.980Z",
"endAt": "2026-06-18T17:19:05.453Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [],
"createdAt": "2026-03-09T04:11:51.777Z",
"updatedAt": "2026-05-15T19:34:01.635Z"
},
{
"id": 579,
"ownerUserId": 241,
"title": "Product Review",
"description": "Campana ater canis ante ancilla pax torqueo.",
"startAt": "2026-05-14T06:18:59.484Z",
"endAt": "2026-05-15T06:18:59.484Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
164,
16,
38,
229
],
"createdAt": "2026-04-19T13:21:44.969Z",
"updatedAt": "2026-05-09T19:16:05.613Z"
}
],
"meta": {
"page": 25,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=25&limit=24",
"first": "/api/v1/calendar-events?page=1&limit=24",
"last": "/api/v1/calendar-events?page=25&limit=24",
"next": null,
"prev": "/api/v1/calendar-events?page=24&limit=24"
}
}