example-data.com

calendar-events

calendar-events

Page 4 of 10.

Mar
31
Tue

Budget Review

11:41 AM – 11:41 AM

Rooftop

Crinis delinquo corrupti arceo solutio.

Jun
28
Sun

Team Lunch

11:20 AM – 11:20 AM

Cruciamentum arceo abbas apparatus temperantia solus subiungo.

Jul
31
Fri

Off-site Planning

1:26 AM – 3:16 AM

Cribro addo triduana claudeo.

May
17
Sun

Security Training

4:52 AM – 10:39 AM

Rooftop

Facere succurro cohaero quos aufero stultus.

Mar
31
Tue

Retrospective

11:54 AM – 7:49 PM

Conference Room A

Velit perferendis patria.

Mar
3
Tue

Demo Day

2:13 AM – 7:20 AM

Office - Floor 3

Amaritudo tenus possimus damno texo autem brevis tripudio clamo caveo.

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": 73,
      "ownerUserId": 33,
      "title": "Budget Review",
      "description": "Crinis delinquo corrupti arceo solutio.",
      "startAt": "2026-03-31T11:41:37.499Z",
      "endAt": "2026-04-01T11:41:37.499Z",
      "isAllDay": true,
      "location": "Rooftop",
      "attendeeUserIds": [
        37,
        91,
        238,
        10,
        242
      ],
      "createdAt": "2026-03-27T09:54:20.235Z",
      "updatedAt": "2026-04-12T18:18:05.222Z"
    },
    {
      "id": 74,
      "ownerUserId": 34,
      "title": "Team Lunch",
      "description": "Cruciamentum arceo abbas apparatus temperantia solus subiungo.",
      "startAt": "2026-06-28T11:20:03.972Z",
      "endAt": "2026-06-29T11:20:03.972Z",
      "isAllDay": true,
      "location": null,
      "attendeeUserIds": [],
      "createdAt": "2026-05-20T13:59:12.947Z",
      "updatedAt": "2026-05-20T19:41:16.055Z"
    },
    {
      "id": 75,
      "ownerUserId": 34,
      "title": "Off-site Planning",
      "description": "Cribro addo triduana claudeo.",
      "startAt": "2026-07-31T01:26:28.520Z",
      "endAt": "2026-07-31T03:16:55.429Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        189,
        105,
        144
      ],
      "createdAt": "2026-04-23T19:18:11.883Z",
      "updatedAt": "2026-05-04T16:48:28.305Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=4",
    "next": "/api/v1/calendar-events?page=5",
    "prev": "/api/v1/calendar-events?page=3"
  }
}
Draftbit