example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #580

Apr
22
Wed

Retrospective

6:29 PM – 1:31 AM

Zoom

Explicabo beneficium capitulus video qui utor appello caecus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 580,
  "ownerUserId": 241,
  "title": "Retrospective",
  "description": "Explicabo beneficium capitulus video qui utor appello caecus.",
  "startAt": "2026-04-22T18:29:21.355Z",
  "endAt": "2026-04-23T01:31:32.427Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    215,
    186,
    151
  ],
  "createdAt": "2026-03-09T21:40:00.057Z",
  "updatedAt": "2026-05-09T06:11:40.276Z"
}