example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Page 19 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": 433,
      "ownerUserId": 177,
      "title": "Hiring Interview",
      "description": "Debitis vulariter color dicta baiulus tracto ratione.",
      "startAt": "2026-06-08T01:49:25.999Z",
      "endAt": "2026-06-08T03:35:54.252Z",
      "isAllDay": false,
      "location": "Main Boardroom",
      "attendeeUserIds": [
        141
      ],
      "createdAt": "2026-05-16T05:08:20.463Z",
      "updatedAt": "2026-05-16T13:36:51.429Z"
    },
    {
      "id": 434,
      "ownerUserId": 178,
      "title": "Design Critique",
      "description": "Denuncio constans condico acsi occaecati.",
      "startAt": "2026-07-31T18:48:33.452Z",
      "endAt": "2026-08-01T18:48:33.452Z",
      "isAllDay": true,
      "location": "Cafeteria",
      "attendeeUserIds": [
        143,
        106,
        180,
        195,
        61
      ],
      "createdAt": "2026-03-09T09:30:18.446Z",
      "updatedAt": "2026-05-04T17:54:42.796Z"
    },
    {
      "id": 435,
      "ownerUserId": 178,
      "title": "Onboarding Session",
      "description": "Sto debilito deinde cunctatio thorax arx.",
      "startAt": "2026-05-29T05:33:18.812Z",
      "endAt": "2026-05-30T05:33:18.812Z",
      "isAllDay": true,
      "location": "Zoom",
      "attendeeUserIds": [
        59,
        140,
        22
      ],
      "createdAt": "2026-03-09T17:04:01.671Z",
      "updatedAt": "2026-04-03T23:02:27.804Z"
    }
  ],
  "meta": {
    "page": 19,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=19&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=20&limit=24",
    "prev": "/api/v1/calendar-events?page=18&limit=24"
  }
}