example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 21 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": 481,
      "ownerUserId": 197,
      "title": "Hiring Interview",
      "description": "Argumentum deputo caries confugo.",
      "startAt": "2026-05-19T16:38:10.045Z",
      "endAt": "2026-05-19T21:18:45.555Z",
      "isAllDay": false,
      "location": "Conference Room A",
      "attendeeUserIds": [
        149,
        146
      ],
      "createdAt": "2026-04-16T08:20:34.091Z",
      "updatedAt": "2026-04-28T11:16:26.885Z"
    },
    {
      "id": 482,
      "ownerUserId": 197,
      "title": "Design Critique",
      "description": "Decerno conscendo denego utor nisi thorax pariatur incidunt tumultus.",
      "startAt": "2026-07-07T15:43:35.563Z",
      "endAt": "2026-07-08T15:43:35.563Z",
      "isAllDay": true,
      "location": "Cafeteria",
      "attendeeUserIds": [
        232,
        14
      ],
      "createdAt": "2026-04-01T04:16:50.328Z",
      "updatedAt": "2026-04-11T02:39:20.245Z"
    },
    {
      "id": 483,
      "ownerUserId": 197,
      "title": "Retrospective",
      "description": "Subito decens demulceo bos nulla arbustum audio.",
      "startAt": "2026-04-12T03:03:48.893Z",
      "endAt": "2026-04-12T04:51:37.954Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        78,
        159
      ],
      "createdAt": "2026-03-17T20:35:13.492Z",
      "updatedAt": "2026-05-19T22:17:17.306Z"
    }
  ],
  "meta": {
    "page": 21,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=21&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=22&limit=24",
    "prev": "/api/v1/calendar-events?page=20&limit=24"
  }
}