Integrations
Connect ABM.dev to the tools your team already uses. Every integration listed here is backed by real platform functionality — no placeholders.
Before you begin
Most integrations need an ABM.dev API key or an OAuth-connected workspace. Generate a key in Settings → API Keys.
Native integrations (HubSpot, LinkedIn, Slack) install via OAuth from your Settings panel.
AI Assistants
Let Claude call ABM.dev tools directly through MCP.
Claude.ai Connector
Give Claude direct access to your ABM.dev workspace via MCP.
CRM
Sync enriched contacts and companies to your CRM.
HubSpot
Bi-directional CRM sync with automatic field mapping.
Data
Enrich profiles with first-party social data.
Direct LinkedIn profile and company enrichment via the Voyager API.
Content
Pull content sources into ABM.dev and publish back out.
Notion
Import content instructions from Notion pages and keep them in sync.
Webflow
Publish generated content to Webflow CMS collections.
Team Messaging
Install ABM.dev into the tools your team already lives in.
Slack
Install the ABM.dev Slack app in your workspace via OAuth.
Authentication
API-key integrations authenticate with an x-api-key header. OAuth integrations (HubSpot, LinkedIn, Slack) install from your Settings panel. The Claude connector uses the MCP OAuth 2.1 flow — no keys to paste.
curl -s https://api.abm.dev/v1/me \
-H "x-api-key: YOUR_API_KEY" | jq .Webhook events
Subscribe to these events from any webhook-capable service to react to ABM.dev activity in real time.
enrichment.completedEnrichment job finished processingenrichment.approvedEnrichment result approved for CRM synccampaign.createdNew campaign was createdcampaign.status_changedCampaign moved to a new stagecontact.createdNew contact added to the platformperson_finder.completedPerson finder job returned resultscurl -X POST https://api.abm.dev/v1/webhooks \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://your-app.com/webhooks/abmdev",
"events": [
"enrichment.completed",
"campaign.status_changed"
]
}'