Skip to main content

CRM Integrations

CronDB is building native integrations with popular CRM platforms. These integrations will sync enriched domain data, create contacts, and keep your CRM up to date automatically.

Coming Soon

CRM integrations are currently in development. This page describes planned functionality. Sign up for early access at app.crondb.com/integrations.

HubSpot (Coming Q2 2026)

Planned Features

FeatureDescription
Create contactsAutomatically create HubSpot contacts from CronDB leads
Enrich existing contactsAdd CronDB data to your existing HubSpot contacts
Create companiesCreate company records with enrichment data
Sync propertiesMap CronDB fields to HubSpot custom properties
Bi-directional syncChanges in HubSpot reflect in CronDB and vice versa
Deal creationAuto-create deals when leads meet score thresholds

How It Will Work

  1. Connect your HubSpot account via OAuth
  2. Map CronDB fields to HubSpot properties:
    • industry → HubSpot Industry
    • tech_stack → Custom Property
    • engagement_score → Lead Score
    • website_summary → Description
  3. Configure sync rules:
    • Which lead lists or audiences to sync
    • Create vs. update behavior
    • Sync frequency (real-time or batched)
  4. Activate the integration

Data Mapping

CronDB FieldHubSpot PropertyType
domainWebsiteString
industryIndustryDropdown
countryCountryDropdown
emails[]EmailString
phonePhoneString
website_summaryDescriptionText
tech_stackCustom: Tech StackMulti-select
scoreHubSpot ScoreNumber

Salesforce (Coming Q2 2026)

Planned Features

FeatureDescription
Push leadsCreate Salesforce Lead records from CronDB
Enrich accountsAdd CronDB data to existing Account records
Custom objectsSync to custom Salesforce objects
Field mappingMap any CronDB field to any Salesforce field
Workflow triggersTrigger Salesforce Flows from CronDB events
ReportingCronDB data available in Salesforce reports

How It Will Work

  1. Connect Salesforce via OAuth (admin permissions required)
  2. Choose sync target: Leads, Contacts, or Accounts
  3. Map fields between CronDB and Salesforce
  4. Set sync rules and deduplication logic
  5. Activate

Pipedrive (Coming Q3 2026)

Planned Features

  • Create persons and organizations from CronDB data
  • Sync deal stages with sequence engagement
  • Auto-create activities from sequence events
  • Custom field mapping

Current Workarounds

While native CRM integrations are being built, you can connect CronDB to your CRM today using:

Webhooks + Middleware

  1. Set up a CronDB webhook
  2. Use a middleware service (Zapier, Make, or custom) to receive events
  3. Map and push data to your CRM

Example: CronDB → Zapier → HubSpot

CronDB Webhook → Zapier Catch Hook → HubSpot Create Contact

API Integration

Build a custom integration using the CronDB API:

import requests

# 1. Get enriched domain from CronDB
crondb_response = requests.get(
"https://api.crondb.com/v1/enrichment/domain",
params={"domain": "prospect.com"},
headers={"Authorization": "Bearer cdb_your_key"},
)
domain_data = crondb_response.json()

# 2. Create contact in HubSpot
hubspot_response = requests.post(
"https://api.hubapi.com/crm/v3/objects/contacts",
headers={"Authorization": "Bearer hs_your_key"},
json={
"properties": {
"email": domain_data["contact"]["emails"][0],
"website": domain_data["domain"],
"industry": domain_data["industry"],
}
},
)

CSV Export + Import

For a simpler approach:

  1. Export leads from CronDB as CSV
  2. Import the CSV into your CRM
  3. Schedule recurring exports for ongoing sync

Get Early Access

Want to be notified when CRM integrations launch? Enable notifications in Integrations → CRM on your dashboard, and you will receive an email when the integration for your CRM becomes available.

Next Steps