example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #492

Apr
30
Thu

Quarterly Review

10:49 AM – 10:49 AM

Zoom

Aliquam pectus verbum blandior pax cervus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 492,
  "ownerUserId": 202,
  "title": "Quarterly Review",
  "description": "Aliquam pectus verbum blandior pax cervus.",
  "startAt": "2026-04-30T10:49:02.989Z",
  "endAt": "2026-05-01T10:49:02.989Z",
  "isAllDay": true,
  "location": "Zoom",
  "attendeeUserIds": [
    224,
    169
  ],
  "createdAt": "2026-05-02T09:00:24.154Z",
  "updatedAt": "2026-05-04T22:31:40.938Z"
}