example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 9 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": 193,
      "ownerUserId": 84,
      "title": "Quarterly Review",
      "description": "Caelestis decet usque.",
      "startAt": "2026-03-02T21:26:27.054Z",
      "endAt": "2026-03-02T22:45:25.174Z",
      "isAllDay": false,
      "location": "Google Meet",
      "attendeeUserIds": [],
      "createdAt": "2026-04-09T02:21:14.703Z",
      "updatedAt": "2026-04-15T00:58:18.931Z"
    },
    {
      "id": 194,
      "ownerUserId": 84,
      "title": "Quarterly Review",
      "description": "Somniculosus voro careo beatus.",
      "startAt": "2026-02-21T16:39:05.549Z",
      "endAt": "2026-02-21T21:37:30.990Z",
      "isAllDay": false,
      "location": "Cafeteria",
      "attendeeUserIds": [
        71,
        37,
        204
      ],
      "createdAt": "2026-03-15T05:50:52.651Z",
      "updatedAt": "2026-03-29T13:01:54.639Z"
    },
    {
      "id": 195,
      "ownerUserId": 85,
      "title": "Hiring Interview",
      "description": "Suffoco aperio bestia somniculosus cattus summisse statua.",
      "startAt": "2026-04-22T04:40:03.900Z",
      "endAt": "2026-04-22T07:05:14.816Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        108,
        192
      ],
      "createdAt": "2026-05-04T01:20:12.889Z",
      "updatedAt": "2026-05-08T00:58:13.048Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=9&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=10&limit=24",
    "prev": "/api/v1/calendar-events?page=8&limit=24"
  }
}