example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 17 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": 385,
      "ownerUserId": 157,
      "title": "Off-site Planning",
      "description": "Aperio amplus conscendo cohaero admoveo usitas amo viduo accusator.",
      "startAt": "2026-06-28T04:30:31.034Z",
      "endAt": "2026-06-28T10:33:45.003Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        38
      ],
      "createdAt": "2026-04-01T09:31:33.355Z",
      "updatedAt": "2026-05-02T13:20:39.206Z"
    },
    {
      "id": 386,
      "ownerUserId": 158,
      "title": "Quarterly Review",
      "description": "Adsum incidunt valde cattus carbo beneficium baiulus timidus vado.",
      "startAt": "2026-05-23T20:27:52.099Z",
      "endAt": "2026-05-24T02:29:57.353Z",
      "isAllDay": false,
      "location": "Rooftop",
      "attendeeUserIds": [
        124
      ],
      "createdAt": "2026-03-20T23:21:26.786Z",
      "updatedAt": "2026-03-28T02:23:50.270Z"
    },
    {
      "id": 387,
      "ownerUserId": 158,
      "title": "Quarterly Review",
      "description": "Accusamus nobis balbus cumque demoror deporto conturbo capto conatus.",
      "startAt": "2026-05-22T01:14:50.584Z",
      "endAt": "2026-05-22T07:45:41.616Z",
      "isAllDay": false,
      "location": "Conference Room A",
      "attendeeUserIds": [
        139,
        207,
        112
      ],
      "createdAt": "2026-03-21T21:03:59.003Z",
      "updatedAt": "2026-04-17T06:59:39.850Z"
    }
  ],
  "meta": {
    "page": 17,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=17&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=18&limit=24",
    "prev": "/api/v1/calendar-events?page=16&limit=24"
  }
}