Monotree Open API

The Open API lets external systems interact with your Monotree platform programmatically. You can read and create posts and announcements, browse users and groups, send live alerts to chat rooms or walls via incoming webhooks, react to events like new posts or announcements with outgoing webhooks, and build two-way integrations with tools like Slack, Zapier, HR systems, or your own backend.

LLM-friendly docs

The full reference is available as a single plain-text file. Paste it into Claude, ChatGPT, or any model to ground its answers when generating integration code.

Versioning

The API is currently at v1. Breaking changes will result in a new version (e.g. v2); additive changes (new fields, new endpoints) ship within v1.

Base URL

https://customer.monotree.com/api/open/v1

Quick start

Generate an API token from the Open API tab in your Monotree admin panel, then make your first request:

curl https://customer.monotree.com/api/open/v1/walls \
  -H "Authorization: Bearer mono_your_token_here" \
  -H "Content-Type: application/json"

What's covered