example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #205

May
11
Mon

Quarterly Review

8:02 PM – 8:02 PM

Office - Floor 3

Absum suffoco arto usque.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 205,
  "ownerUserId": 89,
  "title": "Quarterly Review",
  "description": "Absum suffoco arto usque.",
  "startAt": "2026-05-11T20:02:59.218Z",
  "endAt": "2026-05-12T20:02:59.218Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    57
  ],
  "createdAt": "2026-04-14T21:12:14.069Z",
  "updatedAt": "2026-05-13T16:59:17.701Z"
}