example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 10 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": 217,
      "ownerUserId": 94,
      "title": "Security Training",
      "description": "Creptio vigilo vesica tero sono deripio vulgo stultus angustus.",
      "startAt": "2026-07-19T04:16:18.352Z",
      "endAt": "2026-07-19T07:53:42.762Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        90
      ],
      "createdAt": "2026-05-07T11:34:50.306Z",
      "updatedAt": "2026-05-21T16:55:34.355Z"
    },
    {
      "id": 218,
      "ownerUserId": 94,
      "title": "Demo Day",
      "description": "Depono alo cupiditas non ab advoco.",
      "startAt": "2026-03-09T22:06:41.290Z",
      "endAt": "2026-03-10T04:27:11.979Z",
      "isAllDay": false,
      "location": "Zoom",
      "attendeeUserIds": [],
      "createdAt": "2026-04-30T05:03:50.324Z",
      "updatedAt": "2026-05-07T12:19:26.412Z"
    },
    {
      "id": 219,
      "ownerUserId": 94,
      "title": "1:1 with Manager",
      "description": "Coaegresco victus minima repudiandae antea.",
      "startAt": "2026-04-14T00:06:26.490Z",
      "endAt": "2026-04-14T05:04:21.755Z",
      "isAllDay": false,
      "location": "Google Meet",
      "attendeeUserIds": [
        36
      ],
      "createdAt": "2026-05-08T12:58:54.593Z",
      "updatedAt": "2026-05-13T07:15:17.681Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=10&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=11&limit=24",
    "prev": "/api/v1/calendar-events?page=9&limit=24"
  }
}