example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #522

Apr
28
Tue

Retrospective

10:11 PM – 12:03 AM

Conference Room B

Vorax cuppedia addo caritas audax circumvenio amiculum adicio thalassinus crepusculum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 522,
  "ownerUserId": 218,
  "title": "Retrospective",
  "description": "Vorax cuppedia addo caritas audax circumvenio amiculum adicio thalassinus crepusculum.",
  "startAt": "2026-04-28T22:11:28.126Z",
  "endAt": "2026-04-29T00:03:52.952Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    217,
    164,
    154,
    45,
    158
  ],
  "createdAt": "2026-05-07T10:53:23.777Z",
  "updatedAt": "2026-05-12T08:35:17.951Z"
}