example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #274

Mar
29
Sun

1:1 with Manager

5:44 AM – 7:19 AM

Conference Room B

Damnatio comminor contabesco ager.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 274,
  "ownerUserId": 116,
  "title": "1:1 with Manager",
  "description": "Damnatio comminor contabesco ager.",
  "startAt": "2026-03-29T05:44:46.906Z",
  "endAt": "2026-03-29T07:19:28.049Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    221,
    107,
    181
  ],
  "createdAt": "2026-04-01T20:44:24.164Z",
  "updatedAt": "2026-04-29T01:24:49.547Z"
}