Description
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.
1. Go to Settings > Community Nodes.
2. Select Install.
3. Enter n8n-nodes-magnetite in Enter npm package name.
4. Agree to the risks of installing unverified code from a public source.
5. 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
- API Key: Your Magnetite API key
- Base URL:
https://app.magnetite.ai(default) - Minimum n8n version: 0.198.0
- Tested up to n8n version: 1.98.1
Credentials
This node requires a Magnetite API key. You can obtain this from your Magnetite dashboard:
1. Log in to your Magnetite dashboard
2. Go to Project Settings → API & Integrations
3. Copy your API key
Configure the credentials in n8n:
Compatibility
Usage
Basic Lead Magnet Generation
1. Add the Magnetite node to your workflow
2. Set Operation to Generate
3. Configure the required fields:
– Project ID: Your Magnetite project ID
– Email: Lead’s email address
4. Optionally add lead information:
– Full Name, Company, Domain, Industry, etc.
5. Add custom fields as JSON if your project requires them
Checking Generation Status
1. Use the Get Status operation
2. Provide the Job ID from a previous generation request
3. 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}}"
}
}
}
]
}