example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 20 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": 457,
      "ownerUserId": 186,
      "title": "Team Lunch",
      "description": "Theologus suscipit peior aufero vesper articulus deripio antiquus amo sto.",
      "startAt": "2026-05-13T11:35:43.497Z",
      "endAt": "2026-05-13T15:18:36.434Z",
      "isAllDay": false,
      "location": "Cafeteria",
      "attendeeUserIds": [
        89,
        146
      ],
      "createdAt": "2026-05-01T10:43:13.517Z",
      "updatedAt": "2026-05-11T20:48:12.613Z"
    },
    {
      "id": 458,
      "ownerUserId": 186,
      "title": "Team Standup",
      "description": "Uter tabesco ver valde strenuus usitas vitae sint aeternus.",
      "startAt": "2026-04-05T14:55:57.783Z",
      "endAt": "2026-04-05T17:17:48.069Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [],
      "createdAt": "2026-03-14T22:11:32.794Z",
      "updatedAt": "2026-04-19T20:35:55.308Z"
    },
    {
      "id": 459,
      "ownerUserId": 187,
      "title": "Sales Call",
      "description": "Cogo nemo decens casso.",
      "startAt": "2026-05-12T05:21:02.379Z",
      "endAt": "2026-05-12T11:25:05.528Z",
      "isAllDay": false,
      "location": "Rooftop",
      "attendeeUserIds": [
        217,
        3,
        166
      ],
      "createdAt": "2026-02-24T01:18:38.912Z",
      "updatedAt": "2026-04-16T16:25:06.725Z"
    }
  ],
  "meta": {
    "page": 20,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=20&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=21&limit=24",
    "prev": "/api/v1/calendar-events?page=19&limit=24"
  }
}