example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #585

Mar
22
Sun

Budget Review

10:50 AM – 2:26 PM

Zoom

Iusto verus solum studio laudantium ambulo depopulo antepono.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 585,
  "ownerUserId": 243,
  "title": "Budget Review",
  "description": "Iusto verus solum studio laudantium ambulo depopulo antepono.",
  "startAt": "2026-03-22T10:50:18.262Z",
  "endAt": "2026-03-22T14:26:51.550Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    159,
    141,
    59,
    155,
    13
  ],
  "createdAt": "2026-03-30T21:53:59.185Z",
  "updatedAt": "2026-04-18T21:55:14.711Z"
}