example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #146

Jun
27
Sat

Retrospective

10:43 PM – 2:00 AM

Cafeteria

Crapula accedo conscendo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 146,
  "ownerUserId": 62,
  "title": "Retrospective",
  "description": "Crapula accedo conscendo.",
  "startAt": "2026-06-27T22:43:41.837Z",
  "endAt": "2026-06-28T02:00:28.162Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    164,
    69,
    219,
    169,
    148
  ],
  "createdAt": "2026-03-22T07:17:39.111Z",
  "updatedAt": "2026-04-05T01:38:03.911Z"
}