Skip to main content
10 platforms

Integrations

Connect ABM.dev to your automation platforms, CRMs, data tools, and team messaging. All integrations use your API key for authentication.

Before you begin

Most integrations require an ABM.dev API key. Generate one in Settings → API Keys.

Native integrations (HubSpot, LinkedIn) use OAuth and are configured directly in your Settings panel.

Native Integrations

First-party integrations built directly into the ABM.dev platform.

LinkedIn

Direct LinkedIn profile and company data enrichment via Voyager API

Profile enrichmentCompany dataConnection routingPost history

Automation Platforms

Connect ABM.dev to your workflow automation tools via pre-built connectors or webhooks.

Zapier

Connect ABM.dev to 6,000+ apps with triggers, actions, and searches

3 triggers2 actions1 searchPolling events

n8n

Self-hosted workflow automation with declarative nodes and polling triggers

6 operationsPolling triggerSelf-hostedDeclarative routing

Make

Visual automation with 8 modules for enrichment, contacts, and campaigns

8 modulesEvent pollingVisual builderContact search

Power Automate

Microsoft connector for enterprise workflow automation

Custom connectorPolling triggersEnterprise authMicrosoft 365

CRM Platforms

Sync enriched contacts and companies directly into your CRM.

HubSpot

Bi-directional CRM sync with automatic field mapping

Contact syncField mappingAuto-enrichmentWebhook events

Salesforce

External Services connector via OpenAPI 3.0 specification

External ServicesFlow actionsOpenAPI 3.0Apex callouts

Data & Enrichment

Pipe ABM.dev data into your data warehouse, CDP, or enrichment stack.

Segment

Destination and source functions for customer data enrichment

Destination functionSource functionIdentify enrichmentEvent streaming

Clay

HTTP API column templates for enrichment in Clay tables

5 templatesHTTP API columnsJSONPath mappingAuto-enrichment

Team Messaging

Get notified in Slack, Teams, or other messaging platforms when enrichment completes.

Slack

Full Slack app with slash commands, AI assistant, and real-time notifications

Slash commandsAI assistantApp HomeURL unfurlingWorkflow steps

Authentication

All third-party integrations authenticate via an API key sent as the x-api-key header. Native integrations (HubSpot, LinkedIn) use OAuth instead.

Test your API key
curl -s https://api.abm.dev/v1/me \
  -H "x-api-key: YOUR_API_KEY" | jq .

Webhook Events

Subscribe to these event types from any automation platform to react to ABM.dev activity in real time.

enrichment.completedEnrichment job finished processing
enrichment.approvedEnrichment result approved for CRM sync
campaign.createdNew campaign was created
campaign.status_changedCampaign moved to a new stage
contact.createdNew contact added to the platform
person_finder.completedPerson finder job returned results
Example webhook payload
# Register a webhook endpoint
curl -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"
    ]
  }'

Next Steps