Connect your stack
Plug FoxReach into the tools you already use. Automate lead creation, campaign management, and reply handling — without switching tabs.
MCP Server
LiveConnect AI agents like Claude Desktop, Cursor, and Claude Code to FoxReach. Manage leads, campaigns, templates, and email accounts using natural language through the Model Context Protocol.
Python SDK
LiveOfficial Python SDK with sync and async support, typed models, and auto-pagination. Build custom integrations, automate workflows, or embed FoxReach into your Python applications.
TypeScript SDK
LiveOfficial TypeScript/JavaScript SDK with zero dependencies, full type safety, and native fetch. Build integrations for Node.js, Deno, Bun, or the browser.
CLI
LiveManage your FoxReach workspace from the terminal. List leads, create campaigns, check analytics, and more — all from the command line with rich table output.
Claude Code Plugin
LiveManage your outreach directly from Claude Code with natural language. The plugin adds slash commands and context about your FoxReach workspace to Claude Code sessions.
n8n
BetaCommunity node for n8n workflow automation. Create leads, manage campaigns, and react to events with the FoxReach n8n node.
Zapier
Coming SoonConnect FoxReach to 7,000+ apps with Zapier. Automatically create leads from forms, CRMs, and spreadsheets — no code required.
Make.com
Coming SoonBuild visual automation scenarios with Make.com. Connect FoxReach to your marketing stack with drag-and-drop modules.
React to events in real time
All integrations share the same webhook events. Get notified instantly when something happens in your campaigns.
Reply Received
A lead replies to any campaign email
Reply Categorized
AI classifies the reply sentiment
Email Bounced
An email fails to deliver
Email Opened
A lead opens your email
Link Clicked
A lead clicks a tracked link
Lead Unsubscribed
A lead opts out of emails
Build your own integration
The FoxReach REST API gives you full access to leads, campaigns, and webhooks. Use it to build custom integrations with any platform.
# Create a new lead
curl -X POST \
"https://api.foxreach.io/api/v1/leads" \
-H "X-API-Key: otr_your_key" \
-H "Content-Type: application/json" \
-d '{
"email": "jane@example.com",
"firstName": "Jane",
"lastName": "Smith"
}'