n8n Integration
What it does
n8n is an open-source, self-hostable workflow automation platform. Buska connects to n8n via webhooks, letting you build automated lead processing pipelines on your own infrastructure. This is ideal for teams that need full control over their data flow and want to avoid third-party automation platforms.
Plan required: Growth, Scale
How it works
- Buska detects a qualified lead and sends the data to your n8n webhook
- n8n receives the payload and makes all lead fields available as expressions
- Your workflow processes the lead (filter, enrich, transform)
- n8n pushes the result to your CRM, database, or outreach tool
Setup steps
- In n8n, create a new workflow and add a Webhook node as the trigger
- Set the HTTP method to POST
- Copy the production webhook URL from n8n (not the test URL)
- In Buska, go to Settings > Integrations > Webhooks
- Paste the n8n webhook URL and click "Test"
- In n8n, check the execution to verify the payload was received
- Add downstream nodes (e.g., IF node to filter by score, HTTP node to call your CRM API)
Data sent
| Buska field | n8n expression |
|---|---|
| Full webhook payload | Same structure as generic webhooks |
| Lead fields | {{ $json.lead.name }}, {{ $json.lead.aiScore }}, etc. |
| Enriched fields | {{ $json.enriched.email }}, {{ $json.enriched.company }}, etc. |
Use n8n's IF node to branch your workflow based on lead quality. For example: if aiScore is 8 or higher, push to your CRM immediately; if aiScore is between 5 and 7, add to a nurture list; otherwise, skip.
Related guides
- IntegrationsMake.comConnect Buska to Make.com (Integromat) for visual no-code automation. Receive new leads, transform data, and send to 1000+ apps.
- IntegrationsWebhooksBuska sends a JSON payload to your webhook URL whenever a new lead is detected. Build custom integrations with your CRM, Notion, Airtable, or internal tools.
- AutomationsWorkflow BuilderBuild conditional workflows in Buska. When a new lead matches your conditions, trigger Slack, webhook, CRM creation, AI reply, or any chain of actions.