example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #68

Jun
14
Sun

1:1 with Manager

12:14 AM – 4:21 AM

Appositus armarium advoco curo cohibeo cur cruciamentum.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/68"
);
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/68"
);
const calendarEvent = (await res.json()) as CalendarEvent;

Python example

import requests

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

Response

{
  "id": 68,
  "ownerUserId": 31,
  "title": "1:1 with Manager",
  "description": "Appositus armarium advoco curo cohibeo cur cruciamentum.",
  "startAt": "2026-06-14T00:14:07.241Z",
  "endAt": "2026-06-14T04:21:23.462Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    129
  ],
  "createdAt": "2026-05-04T10:15:23.157Z",
  "updatedAt": "2026-05-09T05:01:40.747Z"
}