example-data.com

calendar-events

calendar-events

Page 7 of 10.

Apr
25
Sat

Engineering All-Hands

1:11 PM – 1:11 PM

Vinco aperio antea usus arbustum.

Jun
27
Sat

Retrospective

10:43 PM – 2:00 AM

Cafeteria

Crapula accedo conscendo.

Jul
19
Sun

Team Standup

12:41 PM – 8:39 PM

Microsoft Teams

Centum solvo quam maxime tactus vilicus derelinquo.

Jun
4
Thu

Design Critique

10:54 PM – 1:06 AM

Main Boardroom

Articulus caelum trado bonus nemo comprehendo strues tempora vomer verbera.

May
13
Wed

Customer Interview

10:28 AM – 5:52 PM

Office - Floor 3

Tantillus ceno voveo vehemens adstringo capitulus creta beneficium.

Mar
6
Fri

Security Training

12:32 AM – 8:02 AM

Sustineo adeptio credo cilicium compello somnus conscendo ademptio coniecto ara.

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": 145,
      "ownerUserId": 62,
      "title": "Engineering All-Hands",
      "description": "Vinco aperio antea usus arbustum.",
      "startAt": "2026-04-25T13:11:20.956Z",
      "endAt": "2026-04-26T13:11:20.956Z",
      "isAllDay": true,
      "location": null,
      "attendeeUserIds": [
        3,
        184,
        235,
        138
      ],
      "createdAt": "2026-04-09T13:17:36.584Z",
      "updatedAt": "2026-05-02T18:13:23.286Z"
    },
    {
      "id": 146,
      "ownerUserId": 62,
      "title": "Retrospective",
      "description": "Crapula accedo conscendo.",
      "startAt": "2026-06-27T22:43:41.837Z",
      "endAt": "2026-06-28T02:00:28.162Z",
      "isAllDay": false,
      "location": "Cafeteria",
      "attendeeUserIds": [
        164,
        69,
        219,
        169,
        148
      ],
      "createdAt": "2026-03-22T07:17:39.111Z",
      "updatedAt": "2026-04-05T01:38:03.911Z"
    },
    {
      "id": 147,
      "ownerUserId": 62,
      "title": "Team Standup",
      "description": "Centum solvo quam maxime tactus vilicus derelinquo.",
      "startAt": "2026-07-19T12:41:35.111Z",
      "endAt": "2026-07-19T20:39:06.648Z",
      "isAllDay": false,
      "location": "Microsoft Teams",
      "attendeeUserIds": [
        63,
        89
      ],
      "createdAt": "2026-04-14T11:28:01.618Z",
      "updatedAt": "2026-04-26T22:11:05.351Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 599,
    "totalPages": 25
  },
  "links": {
    "self": "/api/v1/calendar-events?page=7",
    "next": "/api/v1/calendar-events?page=8",
    "prev": "/api/v1/calendar-events?page=6"
  }
}
Draftbit