example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #577

Apr
2
Thu

Quarterly Review

10:52 AM – 12:35 PM

Conference Room B

Creo absens adipisci tergo subito tertius adfectus placeat cresco.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 577,
  "ownerUserId": 239,
  "title": "Quarterly Review",
  "description": "Creo absens adipisci tergo subito tertius adfectus placeat cresco.",
  "startAt": "2026-04-02T10:52:48.402Z",
  "endAt": "2026-04-02T12:35:09.230Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    102,
    61,
    108,
    56
  ],
  "createdAt": "2026-02-21T23:08:25.120Z",
  "updatedAt": "2026-02-24T16:55:26.768Z"
}