example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #293

Jul
13
Mon

Sales Call

3:36 PM – 11:02 PM

Conference Room B

Denuo admoneo varietas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 293,
  "ownerUserId": 123,
  "title": "Sales Call",
  "description": "Denuo admoneo varietas.",
  "startAt": "2026-07-13T15:36:27.902Z",
  "endAt": "2026-07-13T23:02:44.025Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    84,
    61,
    71,
    5,
    220
  ],
  "createdAt": "2026-03-03T03:31:34.116Z",
  "updatedAt": "2026-03-29T07:19:13.778Z"
}