example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #388

Feb
24
Tue

Quarterly Review

1:24 PM – 8:17 PM

Main Boardroom

Circumvenio facere titulus corroboro ambitus adulatio compello.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 388,
  "ownerUserId": 159,
  "title": "Quarterly Review",
  "description": "Circumvenio facere titulus corroboro ambitus adulatio compello.",
  "startAt": "2026-02-24T13:24:31.162Z",
  "endAt": "2026-02-24T20:17:39.397Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    101,
    76,
    56,
    44,
    106
  ],
  "createdAt": "2026-03-07T00:37:53.958Z",
  "updatedAt": "2026-03-28T20:24:51.236Z"
}