example-data.com

calendar-events

calendar-events

Page 6 of 10.

Mar
4
Wed

Off-site Planning

3:14 AM – 9:42 AM

Zoom

Uterque provident arca nam vulgo quisquam commodo artificiose caelestis.

Jun
8
Mon

Sales Call

5:11 AM – 1:08 PM

Vereor carus similique libero laborum curso coma volup.

Jun
11
Thu

Budget Review

2:19 AM – 2:19 AM

Celo adsuesco considero corroboro decor caterva.

May
4
Mon

Retrospective

7:42 PM – 12:11 AM

Error tego traho acer.

Mar
16
Mon

Board Meeting

4:10 PM – 4:10 PM

Office - Floor 3

Ademptio amita labore vapulus aranea vicissitudo vilicus tubineus vulgivagus porro.

May
23
Sat

Team Standup

1:09 AM – 7:44 AM

Rooftop

Adamo ater alter.

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/calendar-events?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = await res.json();
import type { CalendarEvent, ListEnvelope } from "https://example-data.com/types/calendar-events.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<CalendarEvent>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 121,
      "ownerUserId": 52,
      "title": "Off-site Planning",
      "description": "Uterque provident arca nam vulgo quisquam commodo artificiose caelestis.",
      "startAt": "2026-03-04T03:14:50.461Z",
      "endAt": "2026-03-04T09:42:41.155Z",
      "isAllDay": false,
      "location": "Zoom",
      "attendeeUserIds": [
        82
      ],
      "createdAt": "2026-05-17T22:42:48.359Z",
      "updatedAt": "2026-05-21T15:49:31.213Z"
    },
    {
      "id": 122,
      "ownerUserId": 52,
      "title": "Sales Call",
      "description": "Vereor carus similique libero laborum curso coma volup.",
      "startAt": "2026-06-08T05:11:35.740Z",
      "endAt": "2026-06-08T13:08:40.097Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        170
      ],
      "createdAt": "2026-05-01T18:58:15.535Z",
      "updatedAt": "2026-05-09T23:04:58.502Z"
    },
    {
      "id": 123,
      "ownerUserId": 52,
      "title": "Budget Review",
      "description": "Celo adsuesco considero corroboro decor caterva.",
      "startAt": "2026-06-11T02:19:30.214Z",
      "endAt": "2026-06-12T02:19:30.214Z",
      "isAllDay": true,
      "location": null,
      "attendeeUserIds": [
        65,
        146,
        130,
        99
      ],
      "createdAt": "2026-02-26T21:05:58.804Z",
      "updatedAt": "2026-03-19T06:25:57.716Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=6",
    "next": "/api/v1/calendar-events?page=7",
    "prev": "/api/v1/calendar-events?page=5"
  }
}
Draftbit