example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 14 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": 313,
      "ownerUserId": 131,
      "title": "Product Review",
      "description": "Voluptatem venio earum aliquam adversus damno quidem depromo.",
      "startAt": "2026-06-18T15:20:09.996Z",
      "endAt": "2026-06-18T21:37:07.156Z",
      "isAllDay": false,
      "location": "Main Boardroom",
      "attendeeUserIds": [
        189,
        74,
        139,
        32,
        198
      ],
      "createdAt": "2026-03-02T08:38:55.272Z",
      "updatedAt": "2026-04-20T03:29:06.553Z"
    },
    {
      "id": 314,
      "ownerUserId": 132,
      "title": "Engineering All-Hands",
      "description": "Tergo defaeco utique caelum crur vulpes stips copiose.",
      "startAt": "2026-05-07T12:00:47.584Z",
      "endAt": "2026-05-07T18:19:28.087Z",
      "isAllDay": false,
      "location": "Main Boardroom",
      "attendeeUserIds": [
        235,
        162,
        195,
        89,
        81
      ],
      "createdAt": "2026-04-28T02:38:15.152Z",
      "updatedAt": "2026-05-11T13:55:29.468Z"
    },
    {
      "id": 315,
      "ownerUserId": 132,
      "title": "Retrospective",
      "description": "Bonus valde curso aeternus alter spiritus tyrannus thema sub.",
      "startAt": "2026-04-17T04:36:57.208Z",
      "endAt": "2026-04-17T10:08:03.524Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        232,
        204,
        39,
        188
      ],
      "createdAt": "2026-02-24T09:37:32.006Z",
      "updatedAt": "2026-04-13T17:18:11.320Z"
    }
  ],
  "meta": {
    "page": 14,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=14&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=15&limit=24",
    "prev": "/api/v1/calendar-events?page=13&limit=24"
  }
}