example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #216

Apr
7
Tue

Retrospective

2:00 PM – 5:49 PM

Crastinus auctor sursum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 216,
  "ownerUserId": 93,
  "title": "Retrospective",
  "description": "Crastinus auctor sursum.",
  "startAt": "2026-04-07T14:00:04.030Z",
  "endAt": "2026-04-07T17:49:48.313Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [],
  "createdAt": "2026-03-14T21:09:23.492Z",
  "updatedAt": "2026-04-25T09:46:55.785Z"
}