example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 15 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": 337,
      "ownerUserId": 140,
      "title": "Customer Interview",
      "description": "Sopor derelinquo accusamus conturbo cras desipio ustulo compello.",
      "startAt": "2026-04-21T07:03:03.654Z",
      "endAt": "2026-04-22T07:03:03.654Z",
      "isAllDay": true,
      "location": "Cafeteria",
      "attendeeUserIds": [
        95,
        41
      ],
      "createdAt": "2026-05-14T22:47:53.435Z",
      "updatedAt": "2026-05-20T22:04:33.456Z"
    },
    {
      "id": 338,
      "ownerUserId": 140,
      "title": "Customer Interview",
      "description": "Arceo benevolentia vulticulus ultra.",
      "startAt": "2026-07-08T05:02:00.928Z",
      "endAt": "2026-07-08T07:56:57.402Z",
      "isAllDay": false,
      "location": "Main Boardroom",
      "attendeeUserIds": [
        142,
        169,
        18,
        102,
        171
      ],
      "createdAt": "2026-05-10T11:49:39.349Z",
      "updatedAt": "2026-05-16T12:27:49.543Z"
    },
    {
      "id": 339,
      "ownerUserId": 140,
      "title": "Engineering All-Hands",
      "description": "Culpa quae delectatio umerus catena alias.",
      "startAt": "2026-06-11T09:42:46.263Z",
      "endAt": "2026-06-11T11:31:53.117Z",
      "isAllDay": false,
      "location": "Office - Floor 3",
      "attendeeUserIds": [
        73,
        163,
        143,
        199
      ],
      "createdAt": "2026-05-19T15:40:02.586Z",
      "updatedAt": "2026-05-21T09:03:02.249Z"
    }
  ],
  "meta": {
    "page": 15,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=15&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=16&limit=24",
    "prev": "/api/v1/calendar-events?page=14&limit=24"
  }
}