example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 5 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": 97,
      "ownerUserId": 40,
      "title": "Product Review",
      "description": "Copia curatio bellicus aedificium cilicium crinis torqueo vehemens victus triduana.",
      "startAt": "2026-03-25T01:13:33.803Z",
      "endAt": "2026-03-25T08:00:46.710Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        242,
        221,
        222,
        187,
        132
      ],
      "createdAt": "2026-04-02T03:36:11.565Z",
      "updatedAt": "2026-04-30T23:50:22.397Z"
    },
    {
      "id": 98,
      "ownerUserId": 40,
      "title": "Budget Review",
      "description": "Contego argentum tristis adficio tremo modi veniam ventosus catena aeneus.",
      "startAt": "2026-04-23T16:18:27.825Z",
      "endAt": "2026-04-23T17:27:55.219Z",
      "isAllDay": false,
      "location": "Cafeteria",
      "attendeeUserIds": [
        30,
        24,
        216,
        215,
        166
      ],
      "createdAt": "2026-03-18T23:32:41.267Z",
      "updatedAt": "2026-05-11T15:44:40.953Z"
    },
    {
      "id": 99,
      "ownerUserId": 40,
      "title": "Hiring Interview",
      "description": "Vetus crustulum ducimus asper aiunt asporto.",
      "startAt": "2026-03-18T05:09:19.121Z",
      "endAt": "2026-03-18T10:10:55.329Z",
      "isAllDay": false,
      "location": "Main Boardroom",
      "attendeeUserIds": [
        147,
        99,
        5
      ],
      "createdAt": "2026-05-16T14:00:59.788Z",
      "updatedAt": "2026-05-19T10:45:02.047Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=5&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=6&limit=24",
    "prev": "/api/v1/calendar-events?page=4&limit=24"
  }
}