example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 8 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": 169,
      "ownerUserId": 73,
      "title": "Team Standup",
      "description": "Statim commodo cumque conscendo adimpleo valetudo.",
      "startAt": "2026-05-30T06:19:43.487Z",
      "endAt": "2026-05-30T13:38:58.917Z",
      "isAllDay": false,
      "location": "Zoom",
      "attendeeUserIds": [
        240,
        9,
        123,
        160
      ],
      "createdAt": "2026-02-23T08:42:41.636Z",
      "updatedAt": "2026-04-19T04:47:45.302Z"
    },
    {
      "id": 170,
      "ownerUserId": 73,
      "title": "Product Review",
      "description": "Baiulus atavus civitas sursum.",
      "startAt": "2026-03-15T21:47:47.818Z",
      "endAt": "2026-03-16T21:47:47.818Z",
      "isAllDay": true,
      "location": "Conference Room A",
      "attendeeUserIds": [
        17
      ],
      "createdAt": "2026-02-27T00:27:18.644Z",
      "updatedAt": "2026-05-09T04:48:05.455Z"
    },
    {
      "id": 171,
      "ownerUserId": 74,
      "title": "Architecture Review",
      "description": "Pecto stella subito suadeo.",
      "startAt": "2026-02-27T21:07:03.720Z",
      "endAt": "2026-02-28T02:40:31.250Z",
      "isAllDay": false,
      "location": "Rooftop",
      "attendeeUserIds": [
        149,
        114,
        222,
        208
      ],
      "createdAt": "2026-03-16T19:03:08.604Z",
      "updatedAt": "2026-04-19T17:23:42.766Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=8&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=9&limit=24",
    "prev": "/api/v1/calendar-events?page=7&limit=24"
  }
}