Verified by n8n — AcreLens passed n8n’s review and is shipping in n8n Cloud’s verified-nodes catalog as of May 7 2026. Drag-and-drop on cloud, no install required.
What ships
Install
Self-hosted n8n
In your n8n UI:- Go to Settings → Community Nodes
- Click Install a community node
- Enter
n8n-nodes-acrelens - Tick the risk-acknowledgement checkbox and click Install
n8n Cloud
No install needed. AcreLens is a verified node, so it’s already in n8n Cloud’s regular node search:- Open any n8n Cloud workflow
- Click the + to add a node
- Search for
AcreLens - Pick either AcreLens (the action node) or AcreLens Trigger (the webhook receiver)
Connect your API key
- In n8n, go to Credentials → Add Credential
- Search AcreLens API
- Paste an API key from your dashboard. Use an
al_test_*key for staging,al_live_*for production - (Optional) Paste your Webhook Signing Secret — only needed if you plan to use the AcreLens Trigger node
- Click Save. n8n runs a credential test against
/v1/balanceautomatically
Two ways to handle async reports
AcreLens analyses take ~90 seconds. The node returns areport_id immediately, and you have two patterns for getting the completed report into your workflow.
Pattern A — push (recommended)
Zero polling, near-zero latency. Pair the Run Analysis action with the AcreLens Trigger node:- Drop an AcreLens Trigger node first. Copy its production webhook URL
- In the AcreLens action node (Run Analysis), expand Additional Fields and paste that URL into Webhook URL
- Run the action. The trigger fires when the report completes, with the full structured report body
Pattern B — poll
Simpler, but burns workflow runs while waiting:report_id from the previous step’s output (or use ={{ $json.report_id }}).