example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #372

Feb
28
Sat

Strategy Workshop

5:41 PM – 11:20 PM

Main Boardroom

Cogo deleniti comis suggero inflammatio subiungo molestias.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 372,
  "ownerUserId": 152,
  "title": "Strategy Workshop",
  "description": "Cogo deleniti comis suggero inflammatio subiungo molestias.",
  "startAt": "2026-02-28T17:41:03.630Z",
  "endAt": "2026-02-28T23:20:39.443Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    52,
    180,
    12,
    98,
    112
  ],
  "createdAt": "2026-04-11T08:54:39.034Z",
  "updatedAt": "2026-04-23T07:11:37.378Z"
}