example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 4 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": 73,
      "ownerUserId": 33,
      "title": "Budget Review",
      "description": "Crinis delinquo corrupti arceo solutio.",
      "startAt": "2026-03-31T11:41:37.499Z",
      "endAt": "2026-04-01T11:41:37.499Z",
      "isAllDay": true,
      "location": "Rooftop",
      "attendeeUserIds": [
        37,
        91,
        238,
        10,
        242
      ],
      "createdAt": "2026-03-27T09:54:20.235Z",
      "updatedAt": "2026-04-12T18:18:05.222Z"
    },
    {
      "id": 74,
      "ownerUserId": 34,
      "title": "Team Lunch",
      "description": "Cruciamentum arceo abbas apparatus temperantia solus subiungo.",
      "startAt": "2026-06-28T11:20:03.972Z",
      "endAt": "2026-06-29T11:20:03.972Z",
      "isAllDay": true,
      "location": null,
      "attendeeUserIds": [],
      "createdAt": "2026-05-20T13:59:12.947Z",
      "updatedAt": "2026-05-20T19:41:16.055Z"
    },
    {
      "id": 75,
      "ownerUserId": 34,
      "title": "Off-site Planning",
      "description": "Cribro addo triduana claudeo.",
      "startAt": "2026-07-31T01:26:28.520Z",
      "endAt": "2026-07-31T03:16:55.429Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        189,
        105,
        144
      ],
      "createdAt": "2026-04-23T19:18:11.883Z",
      "updatedAt": "2026-05-04T16:48:28.305Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=4&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=5&limit=24",
    "prev": "/api/v1/calendar-events?page=3&limit=24"
  }
}