example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #67

Mar
14
Sat

1:1 with Manager

7:38 PM – 9:42 PM

Conference Room A

Cernuus argentum similique territo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 67,
  "ownerUserId": 30,
  "title": "1:1 with Manager",
  "description": "Cernuus argentum similique territo.",
  "startAt": "2026-03-14T19:38:32.026Z",
  "endAt": "2026-03-14T21:42:47.086Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    152
  ],
  "createdAt": "2026-02-28T06:40:00.471Z",
  "updatedAt": "2026-03-12T05:23:53.640Z"
}