calendar-events
calendar-events
Page 7 of 25.
Overview
- Apr25
Engineering All-Hands
1:11 PM
- Jun27
Retrospective
10:43 PM · Cafeteria
- Jul19
Team Standup
12:41 PM · Microsoft Teams
- Jun4
Design Critique
10:54 PM · Main Boardroom
- May13
Customer Interview
10:28 AM · Office - Floor 3
- Mar6
Security Training
12:32 AM
- Jul28
Engineering All-Hands
4:24 AM · Cafeteria
- May12
Security Training
8:10 PM · Rooftop
- Jul14
Team Lunch
12:50 PM · Google Meet
- Mar29
Budget Review
8:54 AM · Microsoft Teams
- May6
Team Lunch
12:25 PM · Microsoft Teams
- Jun9
Security Training
4:36 PM · Zoom
- May9
Engineering All-Hands
11:24 PM
- Jun2
Sales Call
1:48 AM · Google Meet
- Mar22
Team Lunch
12:37 AM · Conference Room A
- Jun18
Budget Review
2:24 PM
- Mar7
Security Training
11:16 PM · Cafeteria
- May1
Team Standup
5:49 AM
- Jun11
Strategy Workshop
11:43 PM · Cafeteria
- Mar3
Hiring Interview
10:01 PM
- Apr26
Sales Call
3:20 AM · Main Boardroom
- Apr11
Design Critique
9:20 PM · Conference Room B
- Mar17
Architecture Review
8:39 AM · Cafeteria
- Jul28
Engineering All-Hands
3:37 AM · Microsoft Teams
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": 145,
"ownerUserId": 62,
"title": "Engineering All-Hands",
"description": "Vinco aperio antea usus arbustum.",
"startAt": "2026-04-25T13:11:20.956Z",
"endAt": "2026-04-26T13:11:20.956Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
3,
184,
235,
138
],
"createdAt": "2026-04-09T13:17:36.584Z",
"updatedAt": "2026-05-02T18:13:23.286Z"
},
{
"id": 146,
"ownerUserId": 62,
"title": "Retrospective",
"description": "Crapula accedo conscendo.",
"startAt": "2026-06-27T22:43:41.837Z",
"endAt": "2026-06-28T02:00:28.162Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
164,
69,
219,
169,
148
],
"createdAt": "2026-03-22T07:17:39.111Z",
"updatedAt": "2026-04-05T01:38:03.911Z"
},
{
"id": 147,
"ownerUserId": 62,
"title": "Team Standup",
"description": "Centum solvo quam maxime tactus vilicus derelinquo.",
"startAt": "2026-07-19T12:41:35.111Z",
"endAt": "2026-07-19T20:39:06.648Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
63,
89
],
"createdAt": "2026-04-14T11:28:01.618Z",
"updatedAt": "2026-04-26T22:11:05.351Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=7&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=8&limit=24",
"prev": "/api/v1/calendar-events?page=6&limit=24"
}
}