example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #39

Apr
12
Sun

Budget Review

2:23 PM – 9:28 PM

Conference Room A

Testimonium delinquo coadunatio vehemens velum constans basium conventus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 39,
  "ownerUserId": 21,
  "title": "Budget Review",
  "description": "Testimonium delinquo coadunatio vehemens velum constans basium conventus.",
  "startAt": "2026-04-12T14:23:32.444Z",
  "endAt": "2026-04-12T21:28:58.604Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    202,
    132,
    32,
    108,
    156
  ],
  "createdAt": "2026-02-21T13:17:06.999Z",
  "updatedAt": "2026-04-29T00:38:06.403Z"
}