example-data.com

calendar-events

calendar-events

Page 3 of 10.

Jul
11
Sat

Board Meeting

6:19 PM – 8:21 PM

Office - Floor 3

Natus socius demergo eaque comitatus suggero expedita.

Apr
1
Wed

Team Standup

10:36 PM – 1:03 AM

Conference Room B

Audacia demens volaticus clamo summisse laborum bestia ad angulus.

Jun
12
Fri

Onboarding Session

8:03 PM – 3:17 AM

Main Boardroom

Praesentium approbo sustineo molestiae ultra benevolentia coadunatio.

Jul
25
Sat

Off-site Planning

2:13 PM – 6:47 PM

Vesica tibi acervus caput aestas.

Aug
12
Wed

Product Review

1:18 PM – 6:50 PM

Conference Room A

Carcer volva eveniet appello ascisco crudelis sperno.

May
25
Mon

1:1 with Manager

5:01 PM – 7:39 PM

Correptius alii crinis architecto eaque.

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": 49,
      "ownerUserId": 24,
      "title": "Board Meeting",
      "description": "Natus socius demergo eaque comitatus suggero expedita.",
      "startAt": "2026-07-11T18:19:17.788Z",
      "endAt": "2026-07-11T20:21:23.571Z",
      "isAllDay": false,
      "location": "Office - Floor 3",
      "attendeeUserIds": [],
      "createdAt": "2026-03-05T20:22:03.781Z",
      "updatedAt": "2026-03-13T03:57:24.564Z"
    },
    {
      "id": 50,
      "ownerUserId": 25,
      "title": "Team Standup",
      "description": "Audacia demens volaticus clamo summisse laborum bestia ad angulus.",
      "startAt": "2026-04-01T22:36:06.737Z",
      "endAt": "2026-04-02T01:03:34.254Z",
      "isAllDay": false,
      "location": "Conference Room B",
      "attendeeUserIds": [
        106
      ],
      "createdAt": "2026-05-03T04:11:20.073Z",
      "updatedAt": "2026-05-08T20:43:42.651Z"
    },
    {
      "id": 51,
      "ownerUserId": 25,
      "title": "Onboarding Session",
      "description": "Praesentium approbo sustineo molestiae ultra benevolentia coadunatio.",
      "startAt": "2026-06-12T20:03:17.336Z",
      "endAt": "2026-06-13T03:17:42.021Z",
      "isAllDay": false,
      "location": "Main Boardroom",
      "attendeeUserIds": [
        140
      ],
      "createdAt": "2026-04-05T01:59:27.871Z",
      "updatedAt": "2026-04-27T09:02:05.766Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=3",
    "next": "/api/v1/calendar-events?page=4",
    "prev": "/api/v1/calendar-events?page=2"
  }
}
Draftbit