example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #295

May
19
Tue

Budget Review

11:04 AM – 2:04 PM

Timidus sed subito viduo soleo confero.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 295,
  "ownerUserId": 125,
  "title": "Budget Review",
  "description": "Timidus sed subito viduo soleo confero.",
  "startAt": "2026-05-19T11:04:41.291Z",
  "endAt": "2026-05-19T14:04:16.738Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    49,
    88,
    244
  ],
  "createdAt": "2026-05-15T19:12:04.337Z",
  "updatedAt": "2026-05-19T08:45:57.686Z"
}