example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #552

Jul
5
Sun

1:1 with Manager

12:52 AM – 3:49 AM

Zoom

Viridis voluptatum tersus deserunt.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 552,
  "ownerUserId": 230,
  "title": "1:1 with Manager",
  "description": "Viridis voluptatum tersus deserunt.",
  "startAt": "2026-07-05T00:52:34.792Z",
  "endAt": "2026-07-05T03:49:11.438Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    24,
    91
  ],
  "createdAt": "2026-03-12T14:23:35.530Z",
  "updatedAt": "2026-03-21T12:20:27.181Z"
}