example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 6 of 25.

Overview

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": 121,
      "ownerUserId": 52,
      "title": "Off-site Planning",
      "description": "Uterque provident arca nam vulgo quisquam commodo artificiose caelestis.",
      "startAt": "2026-03-04T03:14:50.461Z",
      "endAt": "2026-03-04T09:42:41.155Z",
      "isAllDay": false,
      "location": "Zoom",
      "attendeeUserIds": [
        82
      ],
      "createdAt": "2026-05-17T22:42:48.359Z",
      "updatedAt": "2026-05-21T15:49:31.213Z"
    },
    {
      "id": 122,
      "ownerUserId": 52,
      "title": "Sales Call",
      "description": "Vereor carus similique libero laborum curso coma volup.",
      "startAt": "2026-06-08T05:11:35.740Z",
      "endAt": "2026-06-08T13:08:40.097Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        170
      ],
      "createdAt": "2026-05-01T18:58:15.535Z",
      "updatedAt": "2026-05-09T23:04:58.502Z"
    },
    {
      "id": 123,
      "ownerUserId": 52,
      "title": "Budget Review",
      "description": "Celo adsuesco considero corroboro decor caterva.",
      "startAt": "2026-06-11T02:19:30.214Z",
      "endAt": "2026-06-12T02:19:30.214Z",
      "isAllDay": true,
      "location": null,
      "attendeeUserIds": [
        65,
        146,
        130,
        99
      ],
      "createdAt": "2026-02-26T21:05:58.804Z",
      "updatedAt": "2026-03-19T06:25:57.716Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=6&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=7&limit=24",
    "prev": "/api/v1/calendar-events?page=5&limit=24"
  }
}