n8n
n8n-nodes-kobana is a community node for n8n that integrates the Kobana API directly into your workflows, without having to write manual HTTP calls.
The package covers both the v1 and v2 of the Kobana API in two nodes:
- Kobana — a simplified, field-based interface for the most common operations (boletos, charges, customers, Pix, payments, transfers and more).
- Kobana Complete — full API access, with dynamic resource and operation selection, covering every endpoint of both versions.
Installation
Community nodes (recommended)
In n8n, go to Settings › Community Nodes › Install and install the n8n-nodes-kobana package. See the official community nodes installation guide.
npm
npm install n8n-nodes-kobana
Local installation (development)
git clone https://github.com/universokobana/n8n-nodes-kobana
cd n8n-nodes-kobana
npm install
npm run build
npm pack
This produces a .tgz file that can be installed in your n8n instance's ~/.n8n/custom/ folder:
cd ~/.n8n/custom/
npm install /path/to/n8n-nodes-kobana-0.0.1.tgz
Or, for active development, use npm link between the two directories. Restart n8n after installing to load the new nodes.
Credentials
The node uses your Kobana access token to authenticate:
- In n8n, go to Credentials › New and select Kobana API.
- Enter your access token.
- Choose the environment (Sandbox or Production).
- Save.
Usage example
To issue a boleto:
- Add a Kobana node to your workflow.
- Select Bank Slip as the resource.
- Choose Create as the operation.
- Fill in the required fields (amount, due date, customer information).
- Optionally configure payment instructions, tags and notifications.
The same pattern applies to every other resource covered by the node — Pix charges, payments, transfers, financial accounts and more.
Learn more
See the GitHub repository for the full list of supported resources and operations.