Skip to documentation
DevelopersAvailable

Make your first API request

Create a key and read your connected accounts without changing any content.

1. Create an API key

In Settings, create a named key with distribution:read. Copy the token when it is shown; you cannot retrieve it later. Store it on your server or in a secret manager. Revoke keys you no longer use. Never put a key in browser code.

2. Read your accounts

Set KITMO_API_KEY in your local environment, then make this request. The response contains a data array. An empty array means no accounts are connected to the key owner.

Example
curl https://kitmo.app/api/v1/distribution/accounts \
  -H "Authorization: Bearer $KITMO_API_KEY"

3. Choose your integration

Use REST for explicit requests and responses, or MCP to expose the workflow as tools to an agent. Both operate on the workspace belonging to the API key. The API version response header is X-Kitmo-Api-Version: 2026-09-01.

Reviewed against the implementation · 22 September 2026