example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #197

Jun
16
Tue

Sprint Planning

10:51 PM – 10:51 PM

Volaticus amet armarium cenaculum vivo sponte condico sollers audacia via.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 197,
  "ownerUserId": 85,
  "title": "Sprint Planning",
  "description": "Volaticus amet armarium cenaculum vivo sponte condico sollers audacia via.",
  "startAt": "2026-06-16T22:51:52.379Z",
  "endAt": "2026-06-17T22:51:52.379Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    149,
    67,
    142
  ],
  "createdAt": "2026-05-13T01:27:44.714Z",
  "updatedAt": "2026-05-14T02:40:42.781Z"
}