example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #573

Mar
31
Tue

Strategy Workshop

8:13 AM – 8:13 AM

Tabella tamdiu conculco.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 573,
  "ownerUserId": 238,
  "title": "Strategy Workshop",
  "description": "Tabella tamdiu conculco.",
  "startAt": "2026-03-31T08:13:53.945Z",
  "endAt": "2026-04-01T08:13:53.945Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    137,
    35,
    3,
    218
  ],
  "createdAt": "2026-03-31T16:17:18.253Z",
  "updatedAt": "2026-04-13T15:38:37.727Z"
}