example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 24 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": 553,
      "ownerUserId": 231,
      "title": "Product Review",
      "description": "Contra rerum callide vos accusamus adstringo saepe cultellus.",
      "startAt": "2026-07-10T16:44:21.293Z",
      "endAt": "2026-07-10T22:20:57.701Z",
      "isAllDay": false,
      "location": "Google Meet",
      "attendeeUserIds": [
        239,
        136,
        24,
        177,
        156
      ],
      "createdAt": "2026-05-02T06:37:27.388Z",
      "updatedAt": "2026-05-21T09:50:35.876Z"
    },
    {
      "id": 554,
      "ownerUserId": 232,
      "title": "Design Critique",
      "description": "Adipisci benevolentia rem aestas ullam usitas suasoria sollicito degusto autus.",
      "startAt": "2026-05-04T19:17:15.271Z",
      "endAt": "2026-05-04T23:57:10.380Z",
      "isAllDay": false,
      "location": "Rooftop",
      "attendeeUserIds": [
        73,
        81,
        42,
        66
      ],
      "createdAt": "2026-03-24T18:31:46.319Z",
      "updatedAt": "2026-03-29T04:53:29.400Z"
    },
    {
      "id": 555,
      "ownerUserId": 233,
      "title": "1:1 with Manager",
      "description": "Voluptatem magnam vis vis derideo terga spero balbus textus.",
      "startAt": "2026-03-03T21:32:47.574Z",
      "endAt": "2026-03-04T02:54:03.294Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        123,
        101,
        54,
        38
      ],
      "createdAt": "2026-03-25T13:41:14.456Z",
      "updatedAt": "2026-04-02T04:45:38.479Z"
    }
  ],
  "meta": {
    "page": 24,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=24&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=25&limit=24",
    "prev": "/api/v1/calendar-events?page=23&limit=24"
  }
}