example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #403

Jul
22
Wed

Budget Review

12:54 PM – 3:47 PM

Office - Floor 3

Defero cohaero vociferor clementia minima cornu approbo bibo baiulus est.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 403,
  "ownerUserId": 166,
  "title": "Budget Review",
  "description": "Defero cohaero vociferor clementia minima cornu approbo bibo baiulus est.",
  "startAt": "2026-07-22T12:54:53.126Z",
  "endAt": "2026-07-22T15:47:41.004Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    192
  ],
  "createdAt": "2026-03-10T02:14:07.762Z",
  "updatedAt": "2026-03-18T20:12:15.970Z"
}