example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 13 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": 289,
      "ownerUserId": 122,
      "title": "Off-site Planning",
      "description": "Decet solum depulso caritas adfero.",
      "startAt": "2026-03-17T07:23:36.174Z",
      "endAt": "2026-03-17T09:41:45.166Z",
      "isAllDay": false,
      "location": "Main Boardroom",
      "attendeeUserIds": [],
      "createdAt": "2026-03-31T12:45:05.454Z",
      "updatedAt": "2026-04-23T17:21:35.172Z"
    },
    {
      "id": 290,
      "ownerUserId": 123,
      "title": "Budget Review",
      "description": "Tertius appono voluptate.",
      "startAt": "2026-02-27T06:19:09.677Z",
      "endAt": "2026-02-27T11:33:53.149Z",
      "isAllDay": false,
      "location": "Conference Room A",
      "attendeeUserIds": [
        226
      ],
      "createdAt": "2026-04-28T15:01:45.880Z",
      "updatedAt": "2026-05-21T07:20:06.388Z"
    },
    {
      "id": 291,
      "ownerUserId": 123,
      "title": "Product Review",
      "description": "Canonicus aduro carus conscendo absque altus deleniti soleo quasi.",
      "startAt": "2026-08-17T07:10:12.187Z",
      "endAt": "2026-08-17T12:54:25.746Z",
      "isAllDay": false,
      "location": "Conference Room B",
      "attendeeUserIds": [
        1,
        207
      ],
      "createdAt": "2026-02-27T10:56:04.324Z",
      "updatedAt": "2026-05-20T04:48:20.761Z"
    }
  ],
  "meta": {
    "page": 13,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=13&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=14&limit=24",
    "prev": "/api/v1/calendar-events?page=12&limit=24"
  }
}