example-data.com

calendar-events

calendar-events

Page 9 of 10.

Mar
2
Mon

Quarterly Review

9:26 PM – 10:45 PM

Google Meet

Caelestis decet usque.

Feb
21
Sat

Quarterly Review

4:39 PM – 9:37 PM

Cafeteria

Somniculosus voro careo beatus.

Apr
22
Wed

Hiring Interview

4:40 AM – 7:05 AM

Suffoco aperio bestia somniculosus cattus summisse statua.

Jul
30
Thu

Team Standup

12:14 AM – 12:14 AM

Office - Floor 3

Maxime tenus amitto.

Jun
16
Tue

Sprint Planning

10:51 PM – 10:51 PM

Volaticus amet armarium cenaculum vivo sponte condico sollers audacia via.

Jun
2
Tue

Hiring Interview

1:43 PM – 3:13 PM

Admoneo adfectus dicta statua absorbeo capillus depopulo inventore vulgaris.

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": 193,
      "ownerUserId": 84,
      "title": "Quarterly Review",
      "description": "Caelestis decet usque.",
      "startAt": "2026-03-02T21:26:27.054Z",
      "endAt": "2026-03-02T22:45:25.174Z",
      "isAllDay": false,
      "location": "Google Meet",
      "attendeeUserIds": [],
      "createdAt": "2026-04-09T02:21:14.703Z",
      "updatedAt": "2026-04-15T00:58:18.931Z"
    },
    {
      "id": 194,
      "ownerUserId": 84,
      "title": "Quarterly Review",
      "description": "Somniculosus voro careo beatus.",
      "startAt": "2026-02-21T16:39:05.549Z",
      "endAt": "2026-02-21T21:37:30.990Z",
      "isAllDay": false,
      "location": "Cafeteria",
      "attendeeUserIds": [
        71,
        37,
        204
      ],
      "createdAt": "2026-03-15T05:50:52.651Z",
      "updatedAt": "2026-03-29T13:01:54.639Z"
    },
    {
      "id": 195,
      "ownerUserId": 85,
      "title": "Hiring Interview",
      "description": "Suffoco aperio bestia somniculosus cattus summisse statua.",
      "startAt": "2026-04-22T04:40:03.900Z",
      "endAt": "2026-04-22T07:05:14.816Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        108,
        192
      ],
      "createdAt": "2026-05-04T01:20:12.889Z",
      "updatedAt": "2026-05-08T00:58:13.048Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=9",
    "next": "/api/v1/calendar-events?page=10",
    "prev": "/api/v1/calendar-events?page=8"
  }
}
Draftbit