example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #419

Jul
17
Fri

Architecture Review

7:38 AM – 7:38 AM

Carpo cruciamentum tepesco animus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 419,
  "ownerUserId": 172,
  "title": "Architecture Review",
  "description": "Carpo cruciamentum tepesco animus.",
  "startAt": "2026-07-17T07:38:19.558Z",
  "endAt": "2026-07-18T07:38:19.558Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    78,
    219
  ],
  "createdAt": "2026-05-12T23:09:59.759Z",
  "updatedAt": "2026-05-21T21:44:44.794Z"
}