example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #436

Jul
17
Fri

Architecture Review

6:08 PM – 11:27 PM

Zoom

Versus commodo tot vulnero ad.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 436,
  "ownerUserId": 178,
  "title": "Architecture Review",
  "description": "Versus commodo tot vulnero ad.",
  "startAt": "2026-07-17T18:08:05.001Z",
  "endAt": "2026-07-17T23:27:20.871Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    15,
    58
  ],
  "createdAt": "2026-04-20T16:25:34.976Z",
  "updatedAt": "2026-04-30T13:42:50.172Z"
}