example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #123

Jun
11
Thu

Budget Review

2:19 AM – 2:19 AM

Celo adsuesco considero corroboro decor caterva.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 123,
  "ownerUserId": 52,
  "title": "Budget Review",
  "description": "Celo adsuesco considero corroboro decor caterva.",
  "startAt": "2026-06-11T02:19:30.214Z",
  "endAt": "2026-06-12T02:19:30.214Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    65,
    146,
    130,
    99
  ],
  "createdAt": "2026-02-26T21:05:58.804Z",
  "updatedAt": "2026-03-19T06:25:57.716Z"
}