example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #177

Aug
8
Sat

1:1 with Manager

4:50 AM – 6:41 AM

Office - Floor 3

Aeternus aeger aegrus.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/calendar-events/177" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/177"
);
const calendarEvent = 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 } from "./types/calendar-events";

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/177"
);
const calendarEvent = (await res.json()) as CalendarEvent;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/177"
)
calendar_event = res.json()

Response

{
  "id": 177,
  "ownerUserId": 78,
  "title": "1:1 with Manager",
  "description": "Aeternus aeger aegrus.",
  "startAt": "2026-08-08T04:50:38.406Z",
  "endAt": "2026-08-08T06:41:29.861Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    173
  ],
  "createdAt": "2026-03-13T13:10:55.613Z",
  "updatedAt": "2026-03-20T23:13:33.610Z"
}