example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #519

Apr
28
Tue

Architecture Review

9:02 AM – 4:08 PM

Office - Floor 3

Ipsam vergo colo viridis.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 519,
  "ownerUserId": 216,
  "title": "Architecture Review",
  "description": "Ipsam vergo colo viridis.",
  "startAt": "2026-04-28T09:02:55.795Z",
  "endAt": "2026-04-28T16:08:53.454Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    7,
    143
  ],
  "createdAt": "2026-03-05T15:16:00.050Z",
  "updatedAt": "2026-05-13T04:52:52.291Z"
}