Description
n8n-nodes-saber
This is an n8n community node. It lets you use the Saber Platform API in your n8n workflows.
Saber provides AI-powered research signals for companies and contacts — company and contact signals, market signals (job posts, LinkedIn posts, fundraising, investments, IPOs), company and contact lists, lead scoring, and email finding.
n8n is a fair-code licensed workflow automation platform.
Installation
Credentials
Operations
Trigger
Compatibility
Resources
Installation
Follow the installation guide in the n8n community nodes documentation.
Once this node is verified, you can install it from the nodes panel in n8n. To install manually:
npm install @saberapp/n8n-nodes-saber
Credentials
You authenticate with a Saber API key.
1. Log in to your Saber account at ai.saber.app.
2. Open Settings → API Keys.
3. Click Create API Key and copy the key (it looks like sklive…). It is shown only once.
4. In n8n, create new Saber API credentials and paste the key.
The Base URL field defaults to https://api.saber.app and should be left as-is unless you are instructed otherwise.
Operations
The Saber node exposes the full Saber public API, grouped into resources:
| Resource | What you can do |
| — | — |
| Company Signal | Create AI research signals about a company by domain (synchronous or asynchronous), list, get, batch. |
| Company Signal Template | Create and manage reusable signal templates. |
| Company Signal Subscription | Schedule recurring signals and manage their actions. |
| Company Signal Summary | Generate and list AI summaries across a domain’s signals. |
| Company List | Search companies and build, import, export, and manage company lists. |
| Contact | Research a contact, find a verified email, and search contacts via LinkedIn Sales Navigator. |
| Contact Signal | Create AI research signals about a contact (synchronous or asynchronous). |
| Contact List | Build and manage contact lists. |
| Market Signal Subscription | Monitor job posts, LinkedIn posts, fundraising, investments, and IPOs. |
| Scoring | Manage scoring profiles, rules, assignments, and computed scores. |
| Account | Read credit balance, connectors, and your organisation profile. |
Tip: synchronous signals
For company and contact signals, prefer the synchronous create operations. They wait for the AI research to finish and return the result in the same request — no webhook hosting or polling required. Use the Timeout (Seconds) field (max 900) under Additional Fields for long-running research.
Trigger
The Saber Trigger node starts a workflow when Saber delivers new market signals. When the workflow is activated, the node creates a Saber market-signal subscription pointed at the n8n webhook URL; when deactivated, it removes the subscription. Each delivered signal becomes one item.
Choose the Signal Type (Job Posts, LinkedIn Post, Fundraising, Recent Investment, IPO), an optional polling interval, and optional filters.
Compatibility
- Requires n8n with
n8nNodesApiVersion1. - Tested against the Saber Platform API
v1. - Saber Platform API reference (OpenAPI)
- n8n community nodes documentation
Resources
Development
npm install
npm run generate # regenerate node operations from the public API spec
npm run build
npm run lint
The operation surface in nodes/Saber/generated.ts is generated by scripts/generate-operations.ts from the public Saber API specification at https://api.saber.app/v1/openapi.yaml. Re-run npm run generate to pick up API changes. The generator and its js-yaml dependency are development-only — the published node has no runtime dependencies.