calendar-events
calendar-events
Page 24 of 25.
Overview
- Jul10
Product Review
4:44 PM · Google Meet
- May4
Design Critique
7:17 PM · Rooftop
- Mar3
1:1 with Manager
9:32 PM
- Aug9
Quarterly Review
6:11 AM · Rooftop
- Aug12
Product Review
2:10 AM · Cafeteria
- Feb27
Design Critique
9:49 AM · Google Meet
- Mar2
Demo Day
9:06 AM · Conference Room A
- Jun29
Budget Review
12:45 PM
- Aug4
Customer Interview
4:20 AM
- Mar28
Team Standup
1:19 PM · Google Meet
- Mar18
Demo Day
11:28 AM
- Apr7
Customer Interview
11:55 AM · Zoom
- Jul30
Design Critique
9:56 PM · Office - Floor 3
- May28
Team Standup
10:33 AM · Office - Floor 3
- Mar8
Demo Day
11:12 AM · Google Meet
- Jul12
Sprint Planning
8:21 AM · Rooftop
- Aug18
Team Lunch
8:37 PM · Google Meet
- Apr13
Sprint Planning
4:28 PM · Main Boardroom
- May17
Customer Interview
3:29 PM · Cafeteria
- Jul27
Strategy Workshop
11:09 PM · Cafeteria
- Mar31
Strategy Workshop
8:13 AM
- Aug2
Off-site Planning
4:51 PM · Conference Room B
- Mar19
Security Training
6:10 AM
- Jul30
Sprint Planning
7:11 PM · Office - Floor 3
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": 553,
"ownerUserId": 231,
"title": "Product Review",
"description": "Contra rerum callide vos accusamus adstringo saepe cultellus.",
"startAt": "2026-07-10T16:44:21.293Z",
"endAt": "2026-07-10T22:20:57.701Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
239,
136,
24,
177,
156
],
"createdAt": "2026-05-02T06:37:27.388Z",
"updatedAt": "2026-05-21T09:50:35.876Z"
},
{
"id": 554,
"ownerUserId": 232,
"title": "Design Critique",
"description": "Adipisci benevolentia rem aestas ullam usitas suasoria sollicito degusto autus.",
"startAt": "2026-05-04T19:17:15.271Z",
"endAt": "2026-05-04T23:57:10.380Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
73,
81,
42,
66
],
"createdAt": "2026-03-24T18:31:46.319Z",
"updatedAt": "2026-03-29T04:53:29.400Z"
},
{
"id": 555,
"ownerUserId": 233,
"title": "1:1 with Manager",
"description": "Voluptatem magnam vis vis derideo terga spero balbus textus.",
"startAt": "2026-03-03T21:32:47.574Z",
"endAt": "2026-03-04T02:54:03.294Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
123,
101,
54,
38
],
"createdAt": "2026-03-25T13:41:14.456Z",
"updatedAt": "2026-04-02T04:45:38.479Z"
}
],
"meta": {
"page": 24,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=24&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=25&limit=24",
"prev": "/api/v1/calendar-events?page=23&limit=24"
}
}