example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #547

May
6
Wed

Quarterly Review

8:07 AM – 1:28 PM

Main Boardroom

Artificiose adamo vallum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 547,
  "ownerUserId": 228,
  "title": "Quarterly Review",
  "description": "Artificiose adamo vallum.",
  "startAt": "2026-05-06T08:07:53.107Z",
  "endAt": "2026-05-06T13:28:48.088Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    117,
    26,
    6
  ],
  "createdAt": "2026-02-24T01:31:31.658Z",
  "updatedAt": "2026-03-04T05:35:34.212Z"
}