example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #390

Jul
10
Fri

Retrospective

6:34 PM – 8:53 PM

Microsoft Teams

Spes curriculum acquiro solio commodi.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 390,
  "ownerUserId": 160,
  "title": "Retrospective",
  "description": "Spes curriculum acquiro solio commodi.",
  "startAt": "2026-07-10T18:34:23.449Z",
  "endAt": "2026-07-10T20:53:46.984Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    130
  ],
  "createdAt": "2026-04-17T20:48:04.656Z",
  "updatedAt": "2026-05-10T10:29:53.071Z"
}