example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #478

May
15
Fri

Budget Review

9:07 PM – 9:07 PM

Microsoft Teams

Dedecor neque sono ante denego copiose volup pax.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 478,
  "ownerUserId": 195,
  "title": "Budget Review",
  "description": "Dedecor neque sono ante denego copiose volup pax.",
  "startAt": "2026-05-15T21:07:50.272Z",
  "endAt": "2026-05-16T21:07:50.272Z",
  "isAllDay": true,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    114
  ],
  "createdAt": "2026-04-05T04:00:27.030Z",
  "updatedAt": "2026-04-14T02:04:38.642Z"
}