example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #296

Aug
8
Sat

Product Review

8:17 AM – 8:17 AM

Conference Room A

Adversus sonitus accommodo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 296,
  "ownerUserId": 125,
  "title": "Product Review",
  "description": "Adversus sonitus accommodo.",
  "startAt": "2026-08-08T08:17:00.033Z",
  "endAt": "2026-08-09T08:17:00.033Z",
  "isAllDay": true,
  "location": "Conference Room A",
  "attendeeUserIds": [
    165,
    23,
    13,
    20
  ],
  "createdAt": "2026-03-17T21:20:37.782Z",
  "updatedAt": "2026-05-13T00:15:58.182Z"
}