example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #447

Apr
13
Mon

Quarterly Review

8:46 AM – 10:00 AM

Textor derelinquo assumenda catena sto usitas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 447,
  "ownerUserId": 183,
  "title": "Quarterly Review",
  "description": "Textor derelinquo assumenda catena sto usitas.",
  "startAt": "2026-04-13T08:46:14.050Z",
  "endAt": "2026-04-13T10:00:44.285Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    114,
    24,
    128,
    23,
    83
  ],
  "createdAt": "2026-04-01T04:03:13.009Z",
  "updatedAt": "2026-04-22T21:21:08.249Z"
}