example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #77

Mar
31
Tue

Retrospective

11:54 AM – 7:49 PM

Conference Room A

Velit perferendis patria.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 77,
  "ownerUserId": 34,
  "title": "Retrospective",
  "description": "Velit perferendis patria.",
  "startAt": "2026-03-31T11:54:16.170Z",
  "endAt": "2026-03-31T19:49:45.393Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    27
  ],
  "createdAt": "2026-05-17T17:47:24.847Z",
  "updatedAt": "2026-05-17T19:15:54.336Z"
}