Munin
Munin developer portal
Get a key →
Section · Get started

Build against Munin.

Three surfaces, one install. The REST API for HTTP integrators, MCP for the agents you operate, and Skills for the procedures those agents read at runtime. Pick the door that matches what you’re building.

The three surfaces read these in order

Authentication three ways in

All three surfaces share the same auth model. Pick the credential that matches who’s calling.

Admin API keyServer-to-server. Full access to the org. Generated in Settings → Tokens.Authorization: Bearer mun_admin_…
Delegated user tokenActing on behalf of one end-user. Self-service tools only. Issued by your auth server.Authorization: Bearer mun_user_…
Session cookieBrowser-side calls from a logged-in operator. Same scopes as the operator.Cookie: munin_session=…

Your first call

A friendly endpoint that confirms your token works and tells you who Munin thinks you are.

cURL · GET /api/v1/whoamicopy & run
curl 'https://api.getmunin.com/api/v1/whoami' \
  -H 'Authorization: Bearer $MUNIN_API_KEY'

Where to go next