example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #282

Mar
9
Mon

Architecture Review

10:09 PM – 2:47 AM

Microsoft Teams

Ambulo spero virtus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 282,
  "ownerUserId": 120,
  "title": "Architecture Review",
  "description": "Ambulo spero virtus.",
  "startAt": "2026-03-09T22:09:47.972Z",
  "endAt": "2026-03-10T02:47:30.815Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    135,
    103,
    160
  ],
  "createdAt": "2026-04-25T21:47:36.503Z",
  "updatedAt": "2026-04-30T04:54:37.619Z"
}