example-data.com

calendar-events

calendar-events

Page 2 of 10.

Mar
15
Sun

Onboarding Session

7:16 AM – 7:16 AM

Zoom

Cometes coniecto cuppedia capitulus dens vestigium suffragium.

Jun
13
Sat

Off-site Planning

6:13 AM – 12:40 PM

Cafeteria

Crux bellicus circumvenio officia vulgus unus.

Aug
1
Sat

Product Review

4:44 AM – 8:55 AM

Office - Floor 3

Alius corona suscipit sollers tot tabesco terror.

Mar
20
Fri

Security Training

11:05 AM – 5:19 PM

Zoom

Deprecator subseco sto tui clementia ciminatio caste.

Apr
9
Thu

Quarterly Review

8:55 PM – 8:55 PM

Google Meet

Bestia vita vulnero xiphias.

Mar
25
Wed

Retrospective

11:22 PM – 11:22 PM

Google Meet

Claudeo uxor curia adiuvo mollitia eius cubicularis curto tabgo ciminatio.

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": 25,
      "ownerUserId": 12,
      "title": "Onboarding Session",
      "description": "Cometes coniecto cuppedia capitulus dens vestigium suffragium.",
      "startAt": "2026-03-15T07:16:38.023Z",
      "endAt": "2026-03-16T07:16:38.023Z",
      "isAllDay": true,
      "location": "Zoom",
      "attendeeUserIds": [
        211,
        200,
        190,
        61,
        54
      ],
      "createdAt": "2026-04-15T22:40:15.662Z",
      "updatedAt": "2026-04-23T12:44:22.125Z"
    },
    {
      "id": 26,
      "ownerUserId": 12,
      "title": "Off-site Planning",
      "description": "Crux bellicus circumvenio officia vulgus unus.",
      "startAt": "2026-06-13T06:13:51.370Z",
      "endAt": "2026-06-13T12:40:29.239Z",
      "isAllDay": false,
      "location": "Cafeteria",
      "attendeeUserIds": [],
      "createdAt": "2026-03-10T03:51:11.452Z",
      "updatedAt": "2026-05-16T15:49:51.703Z"
    },
    {
      "id": 27,
      "ownerUserId": 13,
      "title": "Product Review",
      "description": "Alius corona suscipit sollers tot tabesco terror.",
      "startAt": "2026-08-01T04:44:50.274Z",
      "endAt": "2026-08-01T08:55:31.352Z",
      "isAllDay": false,
      "location": "Office - Floor 3",
      "attendeeUserIds": [],
      "createdAt": "2026-05-14T20:39:23.442Z",
      "updatedAt": "2026-05-14T23:54:22.517Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=2",
    "next": "/api/v1/calendar-events?page=3",
    "prev": "/api/v1/calendar-events?page=1"
  }
}
Draftbit