example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #32

Apr
30
Thu

Retrospective

12:57 PM – 8:01 PM

Zoom

Accusantium omnis currus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 32,
  "ownerUserId": 17,
  "title": "Retrospective",
  "description": "Accusantium omnis currus.",
  "startAt": "2026-04-30T12:57:48.801Z",
  "endAt": "2026-04-30T20:01:42.575Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    215
  ],
  "createdAt": "2026-04-19T09:58:04.566Z",
  "updatedAt": "2026-05-04T09:31:41.691Z"
}