example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #510

Jul
30
Thu

Architecture Review

11:59 AM – 4:14 PM

Conference Room B

Ex ullam videlicet tametsi.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 510,
  "ownerUserId": 213,
  "title": "Architecture Review",
  "description": "Ex ullam videlicet tametsi.",
  "startAt": "2026-07-30T11:59:33.171Z",
  "endAt": "2026-07-30T16:14:14.067Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    202,
    131
  ],
  "createdAt": "2026-03-14T09:46:27.289Z",
  "updatedAt": "2026-05-10T04:00:00.256Z"
}