example-data.com

calendar-events

calendar-events

Page 8 of 10.

May
30
Sat

Team Standup

6:19 AM – 1:38 PM

Zoom

Statim commodo cumque conscendo adimpleo valetudo.

Mar
15
Sun

Product Review

9:47 PM – 9:47 PM

Conference Room A

Baiulus atavus civitas sursum.

Feb
27
Fri

Architecture Review

9:07 PM – 2:40 AM

Rooftop

Pecto stella subito suadeo.

Jun
17
Wed

Team Standup

2:12 PM – 2:12 PM

Conference Room B

Tutis color solus verecundia cavus surculus defleo voveo sit.

Apr
1
Wed

Sales Call

1:24 PM – 1:24 PM

Conference Room A

Thesis contego apostolus cubitum cimentarius clibanus.

Aug
9
Sun

Team Lunch

3:20 AM – 8:22 AM

Zoom

Ademptio temperantia tutis alter dicta vado suffoco cometes.

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": 169,
      "ownerUserId": 73,
      "title": "Team Standup",
      "description": "Statim commodo cumque conscendo adimpleo valetudo.",
      "startAt": "2026-05-30T06:19:43.487Z",
      "endAt": "2026-05-30T13:38:58.917Z",
      "isAllDay": false,
      "location": "Zoom",
      "attendeeUserIds": [
        240,
        9,
        123,
        160
      ],
      "createdAt": "2026-02-23T08:42:41.636Z",
      "updatedAt": "2026-04-19T04:47:45.302Z"
    },
    {
      "id": 170,
      "ownerUserId": 73,
      "title": "Product Review",
      "description": "Baiulus atavus civitas sursum.",
      "startAt": "2026-03-15T21:47:47.818Z",
      "endAt": "2026-03-16T21:47:47.818Z",
      "isAllDay": true,
      "location": "Conference Room A",
      "attendeeUserIds": [
        17
      ],
      "createdAt": "2026-02-27T00:27:18.644Z",
      "updatedAt": "2026-05-09T04:48:05.455Z"
    },
    {
      "id": 171,
      "ownerUserId": 74,
      "title": "Architecture Review",
      "description": "Pecto stella subito suadeo.",
      "startAt": "2026-02-27T21:07:03.720Z",
      "endAt": "2026-02-28T02:40:31.250Z",
      "isAllDay": false,
      "location": "Rooftop",
      "attendeeUserIds": [
        149,
        114,
        222,
        208
      ],
      "createdAt": "2026-03-16T19:03:08.604Z",
      "updatedAt": "2026-04-19T17:23:42.766Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=8",
    "next": "/api/v1/calendar-events?page=9",
    "prev": "/api/v1/calendar-events?page=7"
  }
}
Draftbit