example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #122

Jun
8
Mon

Sales Call

5:11 AM – 1:08 PM

Vereor carus similique libero laborum curso coma volup.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 122,
  "ownerUserId": 52,
  "title": "Sales Call",
  "description": "Vereor carus similique libero laborum curso coma volup.",
  "startAt": "2026-06-08T05:11:35.740Z",
  "endAt": "2026-06-08T13:08:40.097Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    170
  ],
  "createdAt": "2026-05-01T18:58:15.535Z",
  "updatedAt": "2026-05-09T23:04:58.502Z"
}