example-data.com
Menu
Browse docs and collections

calendar-events

calendar-events

Browse 599 calendar-events records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

Apr
28
Tue

Budget Review

8:32 AM – 10:11 AM

Microsoft Teams

Accusator universe pel cursus.

Jun
8
Mon

1:1 with Manager

3:58 PM – 10:57 PM

Conference Room A

Cetera desipio dolorem.

Jun
5
Fri

Demo Day

8:03 AM – 1:44 PM

Vere coniuratio cupiditas usitas centum venustas vigor damnatio decet.

Aug
14
Fri

Onboarding Session

1:40 AM – 6:47 AM

Zoom

Currus decumbo admiratio sortitus.

Jul
10
Fri

Customer Interview

10:57 PM – 10:57 PM

Conference Room A

Vita caelestis accedo nulla amplitudo atrox avaritia utroque tristis.

Jun
19
Fri

Design Critique

5:04 AM – 7:01 AM

Rooftop

Abbas aranea rerum cetera crur sordeo tutamen advenio tabella ago.

Showing first 6 of 24 on this page.

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/calendar-events?limit=25"

JavaScript example

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

TypeScript example

// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent, ListEnvelope } from "./types/calendar-events";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 1,
      "ownerUserId": 1,
      "title": "Budget Review",
      "description": "Accusator universe pel cursus.",
      "startAt": "2026-04-28T08:32:58.356Z",
      "endAt": "2026-04-28T10:11:04.800Z",
      "isAllDay": false,
      "location": "Microsoft Teams",
      "attendeeUserIds": [
        198,
        211
      ],
      "createdAt": "2026-05-20T07:31:54.772Z",
      "updatedAt": "2026-05-20T21:45:34.752Z"
    },
    {
      "id": 2,
      "ownerUserId": 1,
      "title": "1:1 with Manager",
      "description": "Cetera desipio dolorem.",
      "startAt": "2026-06-08T15:58:36.364Z",
      "endAt": "2026-06-08T22:57:20.630Z",
      "isAllDay": false,
      "location": "Conference Room A",
      "attendeeUserIds": [
        125,
        77,
        28,
        110
      ],
      "createdAt": "2026-03-16T20:40:20.038Z",
      "updatedAt": "2026-05-12T19:38:13.278Z"
    },
    {
      "id": 3,
      "ownerUserId": 1,
      "title": "Demo Day",
      "description": "Vere coniuratio cupiditas usitas centum venustas vigor damnatio decet.",
      "startAt": "2026-06-05T08:03:53.462Z",
      "endAt": "2026-06-05T13:44:34.646Z",
      "isAllDay": false,
      "location": null,
      "attendeeUserIds": [
        158,
        98,
        28
      ],
      "createdAt": "2026-03-23T18:06:51.098Z",
      "updatedAt": "2026-04-02T08:11:15.367Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 599,
    "totalPages": 24
  },
  "links": {
    "self": "/api/v1/calendar-events?page=1",
    "first": "/api/v1/calendar-events?page=1",
    "last": "/api/v1/calendar-events?page=24",
    "next": "/api/v1/calendar-events?page=2",
    "prev": null
  }
}

View full response →