example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #555

Mar
3
Tue

1:1 with Manager

9:32 PM – 2:54 AM

Voluptatem magnam vis vis derideo terga spero balbus textus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 555,
  "ownerUserId": 233,
  "title": "1:1 with Manager",
  "description": "Voluptatem magnam vis vis derideo terga spero balbus textus.",
  "startAt": "2026-03-03T21:32:47.574Z",
  "endAt": "2026-03-04T02:54:03.294Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    123,
    101,
    54,
    38
  ],
  "createdAt": "2026-03-25T13:41:14.456Z",
  "updatedAt": "2026-04-02T04:45:38.479Z"
}