example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 3 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": 49,
      "ownerUserId": 24,
      "title": "Board Meeting",
      "description": "Natus socius demergo eaque comitatus suggero expedita.",
      "startAt": "2026-07-11T18:19:17.788Z",
      "endAt": "2026-07-11T20:21:23.571Z",
      "isAllDay": false,
      "location": "Office - Floor 3",
      "attendeeUserIds": [],
      "createdAt": "2026-03-05T20:22:03.781Z",
      "updatedAt": "2026-03-13T03:57:24.564Z"
    },
    {
      "id": 50,
      "ownerUserId": 25,
      "title": "Team Standup",
      "description": "Audacia demens volaticus clamo summisse laborum bestia ad angulus.",
      "startAt": "2026-04-01T22:36:06.737Z",
      "endAt": "2026-04-02T01:03:34.254Z",
      "isAllDay": false,
      "location": "Conference Room B",
      "attendeeUserIds": [
        106
      ],
      "createdAt": "2026-05-03T04:11:20.073Z",
      "updatedAt": "2026-05-08T20:43:42.651Z"
    },
    {
      "id": 51,
      "ownerUserId": 25,
      "title": "Onboarding Session",
      "description": "Praesentium approbo sustineo molestiae ultra benevolentia coadunatio.",
      "startAt": "2026-06-12T20:03:17.336Z",
      "endAt": "2026-06-13T03:17:42.021Z",
      "isAllDay": false,
      "location": "Main Boardroom",
      "attendeeUserIds": [
        140
      ],
      "createdAt": "2026-04-05T01:59:27.871Z",
      "updatedAt": "2026-04-27T09:02:05.766Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=3&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=4&limit=24",
    "prev": "/api/v1/calendar-events?page=2&limit=24"
  }
}