n8n-nodes-autobound
v2.3.3
Published
n8n node for Autobound AI-powered sales content generation and insights
Maintainers
Readme
n8n-nodes-autobound
An n8n community node for Autobound's AI-powered sales content generation and insights API.
🚀 Features
- AI-Powered Content Generation: Create personalized emails, LinkedIn messages, and cold call scripts
- Insights Retrieval: Access detailed prospect and company insights
- Multi-Language Support: Generate content in 10+ languages
- Advanced Personalization: Leverage 350+ insight types for hyper-targeted content
- Email Sequences: Generate multi-step email campaigns
- Content Rewriting: Improve existing content with AI
📦 Installation
Prerequisites
- An Autobound API key
Self-hosted n8n
In a self-hosted n8n instance, you can install community nodes directly:
- Navigate to Settings → Community Nodes
- Click Install
- Enter
n8n-nodes-autoboundand click Install - The node will be available immediately
Alternatively, you can install via npm:
# Install globally for global n8n installations
npm install -g n8n-nodes-autobound
# Or install locally in your n8n project
npm install n8n-nodes-autoboundAfter npm installation, restart your n8n instance to load the new node.
n8n Cloud
For n8n cloud users:
- Go to Settings → Community Nodes
- Click Install
- Enter
n8n-nodes-autoboundand click Install - The node will be installed automatically
Note: Community nodes are available on n8n cloud for Pro and Enterprise plans.
🔧 Configuration
Add Credentials:
- In n8n, go to Settings → Credentials
- Click Add Credential
- Search for "Autobound API"
- Enter your Autobound API key
Get Your API Key:
- Sign up at Autobound
- Navigate to Settings → API Keys
- Generate a new API key
🎯 Usage
Content Generation
The Autobound node supports three types of content generation:
1. Email Generation
{
"resource": "content",
"operation": "generateEmail",
"contactEmail": "[email protected]",
"userEmail": "[email protected]",
"additionalContext": "Prospect showed interest in cybersecurity solutions",
"tone": "professional",
"writingStyle": "consultative",
"wordCount": 150
}2. LinkedIn Messages
{
"resource": "content",
"operation": "generateLinkedIn",
"contactEmail": "[email protected]",
"userEmail": "[email protected]",
"messageType": "connection_request",
"tone": "friendly",
"wordCount": 100
}3. Cold Call Scripts
{
"resource": "content",
"operation": "generateColdCall",
"contactEmail": "[email protected]",
"userEmail": "[email protected]",
"callDuration": "60_seconds",
"tone": "professional"
}Insights Retrieval (v1.4)
Get detailed insights about prospects and companies:
{
"resource": "insights",
"contactEmail": "[email protected]",
"insightSubtype": "companyMarketTrends, financialEarningsCall"
}🔥 Advanced Features
Email Sequences
Generate multi-step email campaigns:
{
"resource": "content",
"operation": "generateEmail",
"contactEmail": "[email protected]",
"userEmail": "[email protected]",
"sequenceNumberOfEmails": 3,
"writingStyle": "challenger_sale"
}Content Rewriting
Improve existing content:
{
"resource": "content",
"operation": "generateEmail",
"contactEmail": "[email protected]",
"userEmail": "[email protected]",
"contentToRewrite": "Your existing email content here..."
}Multiple Variations
Generate multiple content variations:
{
"resource": "content",
"operation": "generateEmail",
"contactEmail": "[email protected]",
"userEmail": "[email protected]",
"n": 3
}Insight Control
Fine-tune which insights to include or exclude:
{
"resource": "content",
"operation": "generateEmail",
"contactEmail": "[email protected]",
"userEmail": "[email protected]",
"enabledInsights": "companyMarketTrends, newsEvents, jobOpenings",
"disabledInsights": "personalInterests, schoolMascot"
}📋 Available Parameters
Required Fields
contactEmailorcontactLinkedinUrl: Prospect identifieruserEmailoruserLinkedinUrl: Seller identifier (for content generation)
Optional Fields
additionalContext: Custom context or intent signalstone: Content tone (professional, casual, friendly, etc.)language: Content language (10+ supported)wordCount: Target word countn: Number of variations to generateenabledInsights: Comma-separated insight types to includedisabledInsights: Comma-separated insight types to excludevalueProposition: Your company's value propositionsalesAsset: Sales collateral to reference
🎨 Writing Styles (Email)
- Challenger Sale: Challenge prospect's thinking with insights
- Consultative: Advisory approach with expert positioning
- CXO Pitch: Direct, strategic communication for executives
- Data-Driven: Focus on metrics and ROI
- Problem-Solver: Identify and solve specific challenges
- Storyteller: Use narratives and case studies
- Value-Based: Emphasize business value and outcomes
🌍 Supported Languages
- English, Spanish, French, German, Italian
- Portuguese, Dutch, Russian, Chinese, Japanese
💡 Example Workflows
Lead Qualification + Content Generation
- HTTP Request → Get prospect data from CRM
- Autobound → Generate personalized email
- Send Email → Deliver via your email service
- CRM Update → Log the outreach
Multi-Channel Outreach
- Autobound → Generate email content
- Autobound → Generate LinkedIn message
- Autobound → Generate call script
- Parallel execution → Send via multiple channels
Content A/B Testing
- Autobound → Generate 3 email variations (
n: 3) - Function → Randomly select version
- Send Email → Deliver selected variation
- Track → Monitor response rates
🔧 Troubleshooting
Common Issues
- Node not appearing: Restart n8n after installation
- Credential errors: Verify API key in Autobound dashboard
- Rate limits: Implement delays between requests
- Large responses: Consider using pagination for insights
Debug Mode
Enable debug logging to see request/response details:
{
"debug": true
}📊 API Limits
- Rate Limits: Respect Autobound's API rate limits
- Content Length: Max 500 words for generated content
- Variations: Max 5 variations per request
- Sequences: Max 10 emails per sequence
🤝 Contributing
This is a community node. Contributions are welcome!
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
📄 License
MIT License - see LICENSE file for details.
🔗 Links
📞 Support
- Issues: GitHub Issues
- Autobound Help Center: https://help.autobound.ai/en
- n8n Community: n8n Community Forum
📋 Changelog
v2.3.2 (Latest)
- Fixed: Email sequences now properly parse and return individual emails as separate items
- When generating an email sequence, each email is now returned as its own item with proper structure
- Each item includes the email subject, body, and metadata (insights used, value props, etc.)
- Items are numbered (1 of 3, 2 of 3, etc.) for easy identification
v2.3.1
- Fixed credential test configuration
- Updated Insights API from v1.2 to v1.4
- Updated installation documentation for cloud users
v2.2.1
- Fixed npm package logo display
v2.0.0
- Renamed package from
n8n-node-autoboundton8n-nodes-autobound - Added Generate Insights API support (v1.2)
- Multi-resource node structure
- 350+ insight types support
Made with ❤️ by the n8n community and Autobound
