example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 25 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": 577,
      "ownerUserId": 239,
      "title": "Quarterly Review",
      "description": "Creo absens adipisci tergo subito tertius adfectus placeat cresco.",
      "startAt": "2026-04-02T10:52:48.402Z",
      "endAt": "2026-04-02T12:35:09.230Z",
      "isAllDay": false,
      "location": "Conference Room B",
      "attendeeUserIds": [
        102,
        61,
        108,
        56
      ],
      "createdAt": "2026-02-21T23:08:25.120Z",
      "updatedAt": "2026-02-24T16:55:26.768Z"
    },
    {
      "id": 578,
      "ownerUserId": 240,
      "title": "Off-site Planning",
      "description": "Tribuo expedita carbo.",
      "startAt": "2026-06-18T13:10:28.980Z",
      "endAt": "2026-06-18T17:19:05.453Z",
      "isAllDay": false,
      "location": "Main Boardroom",
      "attendeeUserIds": [],
      "createdAt": "2026-03-09T04:11:51.777Z",
      "updatedAt": "2026-05-15T19:34:01.635Z"
    },
    {
      "id": 579,
      "ownerUserId": 241,
      "title": "Product Review",
      "description": "Campana ater canis ante ancilla pax torqueo.",
      "startAt": "2026-05-14T06:18:59.484Z",
      "endAt": "2026-05-15T06:18:59.484Z",
      "isAllDay": true,
      "location": "Google Meet",
      "attendeeUserIds": [
        164,
        16,
        38,
        229
      ],
      "createdAt": "2026-04-19T13:21:44.969Z",
      "updatedAt": "2026-05-09T19:16:05.613Z"
    }
  ],
  "meta": {
    "page": 25,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=25&limit=24",
    "first": "/api/v1/calendar-events?page=1&limit=24",
    "last": "/api/v1/calendar-events?page=25&limit=24",
    "next": null,
    "prev": "/api/v1/calendar-events?page=24&limit=24"
  }
}