example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #469

Jun
20
Sat

Retrospective

7:49 PM – 10:45 PM

Microsoft Teams

Vox carmen timor capitulus amissio pauper.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 469,
  "ownerUserId": 191,
  "title": "Retrospective",
  "description": "Vox carmen timor capitulus amissio pauper.",
  "startAt": "2026-06-20T19:49:32.855Z",
  "endAt": "2026-06-20T22:45:31.793Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    97,
    86
  ],
  "createdAt": "2026-04-29T06:48:08.631Z",
  "updatedAt": "2026-05-07T21:40:34.960Z"
}