example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 16 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": 361,
      "ownerUserId": 148,
      "title": "Engineering All-Hands",
      "description": "Decimus solvo torrens tonsor aegrotatio tubineus maiores tego impedit basium.",
      "startAt": "2026-08-02T00:29:56.758Z",
      "endAt": "2026-08-02T06:27:52.476Z",
      "isAllDay": false,
      "location": "Zoom",
      "attendeeUserIds": [
        244,
        50,
        108,
        135,
        213
      ],
      "createdAt": "2026-02-25T02:34:49.920Z",
      "updatedAt": "2026-05-03T23:32:02.494Z"
    },
    {
      "id": 362,
      "ownerUserId": 148,
      "title": "Board Meeting",
      "description": "Basium tracto arca virga.",
      "startAt": "2026-07-24T12:43:49.252Z",
      "endAt": "2026-07-24T16:24:25.429Z",
      "isAllDay": false,
      "location": "Rooftop",
      "attendeeUserIds": [
        157,
        198
      ],
      "createdAt": "2026-02-26T12:05:44.976Z",
      "updatedAt": "2026-03-15T15:18:04.319Z"
    },
    {
      "id": 363,
      "ownerUserId": 148,
      "title": "Engineering All-Hands",
      "description": "Terminatio carus angelus.",
      "startAt": "2026-06-10T18:17:52.886Z",
      "endAt": "2026-06-10T23:26:29.911Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        184,
        191,
        25,
        58,
        46
      ],
      "createdAt": "2026-03-29T22:05:25.917Z",
      "updatedAt": "2026-05-21T18:41:29.977Z"
    }
  ],
  "meta": {
    "page": 16,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=16&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=17&limit=24",
    "prev": "/api/v1/calendar-events?page=15&limit=24"
  }
}