example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 12 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": 265,
      "ownerUserId": 113,
      "title": "1:1 with Manager",
      "description": "Tandem aggredior argentum theologus ratione tonsor.",
      "startAt": "2026-03-10T00:24:58.761Z",
      "endAt": "2026-03-10T03:18:47.509Z",
      "isAllDay": false,
      "location": "Conference Room A",
      "attendeeUserIds": [
        242,
        201,
        233,
        163
      ],
      "createdAt": "2026-02-21T21:37:10.881Z",
      "updatedAt": "2026-05-13T01:22:08.674Z"
    },
    {
      "id": 266,
      "ownerUserId": 113,
      "title": "Security Training",
      "description": "Vinitor nobis crinis delibero.",
      "startAt": "2026-04-17T17:08:23.582Z",
      "endAt": "2026-04-17T20:10:22.981Z",
      "isAllDay": false,
      "location": "Microsoft Teams",
      "attendeeUserIds": [],
      "createdAt": "2026-04-18T02:27:15.846Z",
      "updatedAt": "2026-04-24T16:03:29.283Z"
    },
    {
      "id": 267,
      "ownerUserId": 113,
      "title": "Design Critique",
      "description": "Aperio verbum tum convoco argentum taceo decumbo tendo acies aranea.",
      "startAt": "2026-06-04T17:32:45.097Z",
      "endAt": "2026-06-05T17:32:45.097Z",
      "isAllDay": true,
      "location": "Zoom",
      "attendeeUserIds": [
        244,
        179
      ],
      "createdAt": "2026-03-19T18:18:35.000Z",
      "updatedAt": "2026-04-03T07:25:23.028Z"
    }
  ],
  "meta": {
    "page": 12,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=12&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=13&limit=24",
    "prev": "/api/v1/calendar-events?page=11&limit=24"
  }
}