example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #378

Apr
15
Wed

Strategy Workshop

5:13 AM – 10:00 AM

Conference Room A

Ambitus nihil decens tactus odio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 378,
  "ownerUserId": 155,
  "title": "Strategy Workshop",
  "description": "Ambitus nihil decens tactus odio.",
  "startAt": "2026-04-15T05:13:19.282Z",
  "endAt": "2026-04-15T10:00:27.798Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    198
  ],
  "createdAt": "2026-04-07T05:12:10.300Z",
  "updatedAt": "2026-04-25T08:08:00.925Z"
}