example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #61

May
2
Sat

Strategy Workshop

10:11 AM – 1:34 PM

Microsoft Teams

Constans utroque amitto velociter verus compello tergeo umquam varius.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 61,
  "ownerUserId": 29,
  "title": "Strategy Workshop",
  "description": "Constans utroque amitto velociter verus compello tergeo umquam varius.",
  "startAt": "2026-05-02T10:11:34.625Z",
  "endAt": "2026-05-02T13:34:06.482Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    85,
    73,
    95,
    21,
    151
  ],
  "createdAt": "2026-03-07T09:05:14.148Z",
  "updatedAt": "2026-05-17T08:44:20.325Z"
}