N8N is a powerful workflow automation platform that can seamlessly integrate with Manyreach's API to automate your cold email campaigns. This integration allows you to automatically add prospects, trigger campaigns, and manage your outreach workflows without manual intervention.
Log in to your Manyreach dashboard
Navigate to Account Settings in the left sidebar
Click on the API tab in the top menu
Copy your API Key from the display field (it will look like: ca5b617f-cd2a-412b-925f-10g628b279ds)
Important Note: Keep your API key secure and never share it publicly. If you suspect it's been compromised, use the Reset API Key button to generate a new one.
Open your N8N workflow editor
Add a new HTTP Request node to your workflow
Configure the node with these basic settings:
Method: Select the appropriate method (GET, POST, etc.)
URL: Enter the Manyreach API endpoint (e.g., https://app.manyreach.com/swagger/docs#/)
For adding prospects to your campaigns in bulk, use:
Method: POST
URL: https://app.manyreach.com/api/prospects/crm/add/bulk?apikey={your_apikey}
Body: Include prospect data in JSON format
For getting your lists:
Method: GET
URL: https://app.manyreach.com/api/lists?apikey={your_apikey}
For campaign management:
Method: GET/POST
URL: [Obtain your URL from manyreach dashboard or click here]
Click the Execute Node button in N8N
Check the output panel for a successful response
Verify the data appears correctly in your Manyreach dashboard
Test with a small dataset before running larger workflows
Pro Tip: Start with simple GET requests to verify your API connection before moving to more complex POST operations that modify your data.
Once your basic connection is established, you can create sophisticated automation workflows:
Lead Generation Pipeline: Connect lead scraping tools → N8N → Manyreach prospect import
Multi-Channel Sequences: Trigger email campaigns based on LinkedIn actions or website visits
Response Management: Automatically categorize responses and trigger follow-up actions
Remember: Always include the apikey header in every request to Manyreach. Missing this authentication will result in 401 Unauthorized errors.
Important Note: Manyreach's API has rate limiting in place. If you're processing large volumes of data, implement delays between requests to avoid hitting rate limits.
Verify your API key is correctly copied (no extra spaces)
Check that your API key hasn't been reset recently
Double-check the API endpoint URL for typos
Verify the specific endpoint exists in Manyreach's API documentation
Confirm your JSON payload structure matches Manyreach's expected format
Check that required fields (like email addresses) are properly formatted
Verify the campaign ID exists if you're adding prospects to a specific campaign
Pro Tip: Use N8N's Webhook node as a trigger to create real-time integrations. For example, when a form is submitted on your website, it can automatically add the lead to your Manyreach campaign and start the outreach sequence.