example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 11 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": 241,
      "ownerUserId": 103,
      "title": "Strategy Workshop",
      "description": "Aeneus deinde officia quisquam thesis alo pauci aliquid vesper id.",
      "startAt": "2026-06-26T10:06:31.093Z",
      "endAt": "2026-06-26T13:49:42.284Z",
      "isAllDay": false,
      "location": "Office - Floor 3",
      "attendeeUserIds": [
        231,
        23,
        198,
        234,
        9
      ],
      "createdAt": "2026-04-19T05:49:38.471Z",
      "updatedAt": "2026-05-10T16:44:43.719Z"
    },
    {
      "id": 242,
      "ownerUserId": 104,
      "title": "Design Critique",
      "description": "Sit astrum autem.",
      "startAt": "2026-03-10T18:44:20.470Z",
      "endAt": "2026-03-11T01:04:03.681Z",
      "isAllDay": false,
      "location": "Cafeteria",
      "attendeeUserIds": [
        69
      ],
      "createdAt": "2026-05-04T12:08:53.660Z",
      "updatedAt": "2026-05-10T04:02:49.745Z"
    },
    {
      "id": 243,
      "ownerUserId": 104,
      "title": "Onboarding Session",
      "description": "Spoliatio supplanto cupiditas.",
      "startAt": "2026-05-28T02:03:26.042Z",
      "endAt": "2026-05-28T04:00:02.006Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        116,
        124
      ],
      "createdAt": "2026-05-02T21:18:34.647Z",
      "updatedAt": "2026-05-12T07:41:41.087Z"
    }
  ],
  "meta": {
    "page": 11,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=11&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=12&limit=24",
    "prev": "/api/v1/calendar-events?page=10&limit=24"
  }
}