What you can do
- Read records, query any collection and pipe the results into n8n nodes (Slack, Sheets, HubSpot, etc.).
- Trigger custom actions, fire any Forest action on one or many records, with parameters.
- Use Forest as a trigger, react to events on your collections (record created, action executed) and kick off an n8n workflow.
- Combine with AI, pass Forest records into AI nodes (OpenAI, Claude, etc.) and write the result back through a custom action.
When to use n8n vs. native Forest workflows
Use Forest workflows when the orchestration lives close to your data and your operators, multi-step, human approvals, audit trail. Use n8n when the orchestration spans many tools (Slack, Notion, HubSpot, Stripe…) and Forest is one of several systems involved. The Forest n8n node gives you the same record access and action execution, but inside n8n’s broader automation graph.Setup
Authenticate
Create an API key in your Forest project settings, then paste it into the Forest credentials node in n8n.
Example: post a Slack notification when a high-value record is created
A typical n8n workflow using Forest as the data source:- Forest trigger, fires when a new record is created in
orders. - Filter, keep only orders where
amount > 10000. - Slack node, post a message to
#sales-opswith the customer name and amount.