example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 2 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": 25,
      "ownerUserId": 12,
      "title": "Onboarding Session",
      "description": "Cometes coniecto cuppedia capitulus dens vestigium suffragium.",
      "startAt": "2026-03-15T07:16:38.023Z",
      "endAt": "2026-03-16T07:16:38.023Z",
      "isAllDay": true,
      "location": "Zoom",
      "attendeeUserIds": [
        211,
        200,
        190,
        61,
        54
      ],
      "createdAt": "2026-04-15T22:40:15.662Z",
      "updatedAt": "2026-04-23T12:44:22.125Z"
    },
    {
      "id": 26,
      "ownerUserId": 12,
      "title": "Off-site Planning",
      "description": "Crux bellicus circumvenio officia vulgus unus.",
      "startAt": "2026-06-13T06:13:51.370Z",
      "endAt": "2026-06-13T12:40:29.239Z",
      "isAllDay": false,
      "location": "Cafeteria",
      "attendeeUserIds": [],
      "createdAt": "2026-03-10T03:51:11.452Z",
      "updatedAt": "2026-05-16T15:49:51.703Z"
    },
    {
      "id": 27,
      "ownerUserId": 13,
      "title": "Product Review",
      "description": "Alius corona suscipit sollers tot tabesco terror.",
      "startAt": "2026-08-01T04:44:50.274Z",
      "endAt": "2026-08-01T08:55:31.352Z",
      "isAllDay": false,
      "location": "Office - Floor 3",
      "attendeeUserIds": [],
      "createdAt": "2026-05-14T20:39:23.442Z",
      "updatedAt": "2026-05-14T23:54:22.517Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=2&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=3&limit=24",
    "prev": "/api/v1/calendar-events?page=1&limit=24"
  }
}