calendar-events
calendar-events
Page 17 of 25.
Overview
- Jun28
Off-site Planning
4:30 AM
- May23
Quarterly Review
8:27 PM · Rooftop
- May22
Quarterly Review
1:14 AM · Conference Room A
- Feb24
Quarterly Review
1:24 PM · Main Boardroom
- Mar16
Team Lunch
2:27 PM · Rooftop
- Jul10
Retrospective
6:34 PM · Microsoft Teams
- Jun22
Sales Call
7:25 AM · Conference Room A
- Aug12
Team Lunch
10:54 PM · Google Meet
- Aug1
Hiring Interview
7:25 PM · Cafeteria
- Jun18
Sales Call
1:43 PM · Office - Floor 3
- Jun15
1:1 with Manager
8:19 PM · Office - Floor 3
- Apr12
Team Lunch
9:57 PM
- Jul15
Strategy Workshop
5:39 AM · Office - Floor 3
- Jul8
Demo Day
3:08 AM · Cafeteria
- Jul3
Sprint Planning
7:38 AM
- May16
Sales Call
4:39 PM · Cafeteria
- Jun22
Architecture Review
1:05 PM · Microsoft Teams
- Jun14
Board Meeting
4:42 AM · Office - Floor 3
- Jul22
Budget Review
12:54 PM · Office - Floor 3
- May8
Security Training
5:57 AM · Microsoft Teams
- Jul6
Team Standup
9:36 PM · Zoom
- Jun12
Security Training
8:23 AM · Conference Room A
- May2
Budget Review
2:28 AM · Rooftop
- Feb23
Sales Call
7:28 AM · Zoom
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": 385,
"ownerUserId": 157,
"title": "Off-site Planning",
"description": "Aperio amplus conscendo cohaero admoveo usitas amo viduo accusator.",
"startAt": "2026-06-28T04:30:31.034Z",
"endAt": "2026-06-28T10:33:45.003Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
38
],
"createdAt": "2026-04-01T09:31:33.355Z",
"updatedAt": "2026-05-02T13:20:39.206Z"
},
{
"id": 386,
"ownerUserId": 158,
"title": "Quarterly Review",
"description": "Adsum incidunt valde cattus carbo beneficium baiulus timidus vado.",
"startAt": "2026-05-23T20:27:52.099Z",
"endAt": "2026-05-24T02:29:57.353Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
124
],
"createdAt": "2026-03-20T23:21:26.786Z",
"updatedAt": "2026-03-28T02:23:50.270Z"
},
{
"id": 387,
"ownerUserId": 158,
"title": "Quarterly Review",
"description": "Accusamus nobis balbus cumque demoror deporto conturbo capto conatus.",
"startAt": "2026-05-22T01:14:50.584Z",
"endAt": "2026-05-22T07:45:41.616Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
139,
207,
112
],
"createdAt": "2026-03-21T21:03:59.003Z",
"updatedAt": "2026-04-17T06:59:39.850Z"
}
],
"meta": {
"page": 17,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=17&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=18&limit=24",
"prev": "/api/v1/calendar-events?page=16&limit=24"
}
}