calendar-events
calendar-events
Browse 599 calendar-events records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- Budget Review · 4/28/2026
- 1:1 with Manager · 6/8/2026
- Demo Day · 6/5/2026
- Onboarding Session · 8/14/2026
- Customer Interview · 7/10/2026
- Design Critique · 6/19/2026
- Demo Day · 6/14/2026
- Architecture Review · 5/24/2026
- Team Lunch · 4/8/2026
- Board Meeting · 6/14/2026
- Hiring Interview · 5/17/2026
- 1:1 with Manager · 7/10/2026
- Engineering All-Hands · 5/29/2026
- Security Training · 5/12/2026
- Quarterly Review · 7/17/2026
- 1:1 with Manager · 6/12/2026
- Engineering All-Hands · 8/1/2026
- Team Lunch · 2/24/2026
- 1:1 with Manager · 6/16/2026
- Design Critique · 6/16/2026
- Onboarding Session · 5/29/2026
- Engineering All-Hands · 4/20/2026
- Hiring Interview · 4/9/2026
- Product Review · 7/9/2026
- Apr28
Budget Review
8:32 AM · Microsoft Teams
- Jun8
1:1 with Manager
3:58 PM · Conference Room A
- Jun5
Demo Day
8:03 AM
- Aug14
Onboarding Session
1:40 AM · Zoom
- Jul10
Customer Interview
10:57 PM · Conference Room A
- Jun19
Design Critique
5:04 AM · Rooftop
- Jun14
Demo Day
1:32 PM · Conference Room B
- May24
Architecture Review
1:29 PM · Rooftop
- Apr8
Team Lunch
3:28 AM · Conference Room B
- Jun14
Board Meeting
3:45 AM · Microsoft Teams
- May17
Hiring Interview
11:23 PM · Zoom
- Jul10
1:1 with Manager
5:34 PM · Zoom
- May29
Engineering All-Hands
5:34 PM · Conference Room A
- May12
Security Training
12:45 AM
- Jul17
Quarterly Review
9:21 PM · Main Boardroom
- Jun12
1:1 with Manager
1:54 AM · Conference Room B
- Aug1
Engineering All-Hands
11:50 AM · Office - Floor 3
- Feb24
Team Lunch
11:53 AM · Google Meet
- Jun16
1:1 with Manager
1:20 AM
- Jun16
Design Critique
11:13 AM · Conference Room B
- May29
Onboarding Session
2:32 PM · Rooftop
- Apr20
Engineering All-Hands
6:22 AM · Office - Floor 3
- Apr9
Hiring Interview
11:12 PM · Conference Room B
- Jul9
Product Review
1:26 AM · Conference Room A
Budget Review
8:32 AM – 10:11 AM
Microsoft Teams
Accusator universe pel cursus.
1:1 with Manager
3:58 PM – 10:57 PM
Conference Room A
Cetera desipio dolorem.
Demo Day
8:03 AM – 1:44 PM
Vere coniuratio cupiditas usitas centum venustas vigor damnatio decet.
Onboarding Session
1:40 AM – 6:47 AM
Zoom
Currus decumbo admiratio sortitus.
Customer Interview
10:57 PM – 10:57 PM
Conference Room A
Vita caelestis accedo nulla amplitudo atrox avaritia utroque tristis.
Design Critique
5:04 AM – 7:01 AM
Rooftop
Abbas aranea rerum cetera crur sordeo tutamen advenio tabella ago.
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/calendar-events?limit=25"const res = await fetch(
"https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = await res.json();import type { CalendarEvent, ListEnvelope } from "https://example-data.com/types/calendar-events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<CalendarEvent>;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 1,
"ownerUserId": 1,
"title": "Budget Review",
"description": "Accusator universe pel cursus.",
"startAt": "2026-04-28T08:32:58.356Z",
"endAt": "2026-04-28T10:11:04.800Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
198,
211
],
"createdAt": "2026-05-20T07:31:54.772Z",
"updatedAt": "2026-05-20T21:45:34.752Z"
},
{
"id": 2,
"ownerUserId": 1,
"title": "1:1 with Manager",
"description": "Cetera desipio dolorem.",
"startAt": "2026-06-08T15:58:36.364Z",
"endAt": "2026-06-08T22:57:20.630Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
125,
77,
28,
110
],
"createdAt": "2026-03-16T20:40:20.038Z",
"updatedAt": "2026-05-12T19:38:13.278Z"
},
{
"id": 3,
"ownerUserId": 1,
"title": "Demo Day",
"description": "Vere coniuratio cupiditas usitas centum venustas vigor damnatio decet.",
"startAt": "2026-06-05T08:03:53.462Z",
"endAt": "2026-06-05T13:44:34.646Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
158,
98,
28
],
"createdAt": "2026-03-23T18:06:51.098Z",
"updatedAt": "2026-04-02T08:11:15.367Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 599,
"totalPages": 24
},
"links": {
"self": "/api/v1/calendar-events?page=1",
"first": "/api/v1/calendar-events?page=1",
"last": "/api/v1/calendar-events?page=24",
"next": "/api/v1/calendar-events?page=2",
"prev": null
}
}