example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #468

Mar
1
Sun

Product Review

11:01 PM – 11:01 PM

Microsoft Teams

Accusamus vulnero solio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 468,
  "ownerUserId": 190,
  "title": "Product Review",
  "description": "Accusamus vulnero solio.",
  "startAt": "2026-03-01T23:01:00.454Z",
  "endAt": "2026-03-02T23:01:00.454Z",
  "isAllDay": true,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    220,
    144
  ],
  "createdAt": "2026-03-03T03:54:39.220Z",
  "updatedAt": "2026-05-05T01:59:33.741Z"
}