Package Information
Released: 6/13/2025
Downloads: 0 weekly / 0 monthly
Latest Version: 1.0.3
Author: magnetite
Available Nodes
Documentation
n8n-nodes-magnetite
This is an n8n community node for Magnetite. It lets you generate AI-powered, personalized lead magnets directly in your n8n workflows.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Compatibility
Usage
Resources
Installation
Follow the installation guide in the n8n community nodes documentation.
- Go to Settings > Community Nodes.
- Select Install.
- Enter
n8n-nodes-magnetite
in Enter npm package name. - Agree to the risks of installing unverified code from a public source.
- Select Install.
After installing the node, you can use it like any other node in your workflows.
Operations
Lead Magnet
- Generate: Create a personalized lead magnet for a lead
- Get Status: Retrieve the status of a lead magnet generation job
Credentials
This node requires a Magnetite API key. You can obtain this from your Magnetite dashboard:
- Log in to your Magnetite dashboard
- Go to Project Settings → API & Integrations
- Copy your API key
Configure the credentials in n8n:
- API Key: Your Magnetite API key
- Base URL:
https://app.magnetite.ai
(default)
Compatibility
- Minimum n8n version: 0.198.0
- Tested up to n8n version: 1.98.1
Usage
Basic Lead Magnet Generation
- Add the Magnetite node to your workflow
- Set Operation to Generate
- Configure the required fields:
- Project ID: Your Magnetite project ID
- Email: Lead's email address
- Optionally add lead information:
- Full Name, Company, Domain, Industry, etc.
- Add custom fields as JSON if your project requires them
Checking Generation Status
- Use the Get Status operation
- Provide the Job ID from a previous generation request
- The node returns the current status and results when complete
Example Workflow
{
"nodes": [
{
"name": "Magnetite",
"type": "n8n-nodes-magnetite.magnetite",
"parameters": {
"operation": "generate",
"projectId": "proj_abc123",
"email": "{{$json.email}}",
"leadData": {
"fullName": "{{$json.name}}",
"company": "{{$json.company}}"
}
}
}
]
}
Resources
Version history
1.0.2
- Fixed credential test endpoint
- Improved connection reliability
1.0.1
- Updated GitHub repository URL
- Documentation improvements
1.0.0
- Initial release
- Generate lead magnets
- Check generation status
- Support for all standard lead fields
- Custom fields support via JSON
- Webhook notifications support