example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #111

Feb
24
Tue

Sales Call

6:16 PM – 6:16 PM

Delinquo careo alii laboriosam curis.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 111,
  "ownerUserId": 47,
  "title": "Sales Call",
  "description": "Delinquo careo alii laboriosam curis.",
  "startAt": "2026-02-24T18:16:21.584Z",
  "endAt": "2026-02-25T18:16:21.584Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    69,
    215,
    84,
    74
  ],
  "createdAt": "2026-03-23T06:00:14.212Z",
  "updatedAt": "2026-04-16T15:21:52.912Z"
}