example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 7 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": 145,
      "ownerUserId": 62,
      "title": "Engineering All-Hands",
      "description": "Vinco aperio antea usus arbustum.",
      "startAt": "2026-04-25T13:11:20.956Z",
      "endAt": "2026-04-26T13:11:20.956Z",
      "isAllDay": true,
      "location": null,
      "attendeeUserIds": [
        3,
        184,
        235,
        138
      ],
      "createdAt": "2026-04-09T13:17:36.584Z",
      "updatedAt": "2026-05-02T18:13:23.286Z"
    },
    {
      "id": 146,
      "ownerUserId": 62,
      "title": "Retrospective",
      "description": "Crapula accedo conscendo.",
      "startAt": "2026-06-27T22:43:41.837Z",
      "endAt": "2026-06-28T02:00:28.162Z",
      "isAllDay": false,
      "location": "Cafeteria",
      "attendeeUserIds": [
        164,
        69,
        219,
        169,
        148
      ],
      "createdAt": "2026-03-22T07:17:39.111Z",
      "updatedAt": "2026-04-05T01:38:03.911Z"
    },
    {
      "id": 147,
      "ownerUserId": 62,
      "title": "Team Standup",
      "description": "Centum solvo quam maxime tactus vilicus derelinquo.",
      "startAt": "2026-07-19T12:41:35.111Z",
      "endAt": "2026-07-19T20:39:06.648Z",
      "isAllDay": false,
      "location": "Microsoft Teams",
      "attendeeUserIds": [
        63,
        89
      ],
      "createdAt": "2026-04-14T11:28:01.618Z",
      "updatedAt": "2026-04-26T22:11:05.351Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=7&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=8&limit=24",
    "prev": "/api/v1/calendar-events?page=6&limit=24"
  }
}