Data Sources
ABM.dev aggregates data from multiple sources to provide comprehensive, accurate enrichment. Each source has different strengths and confidence levels.
Multi-Source Enrichment
When you submit an enrichment request, ABM.dev queries multiple sources in parallel:
- 1Source Portfolio Analysis — We evaluate which sources can provide data based on your input (email, domain, LinkedIn URL)
- 2Parallel Fetching — All available sources are queried simultaneously for speed
- 3Data Fusion — Results are merged, with conflicts resolved by source reliability and recency
- 4AI Synthesis — Our AI generates summaries, insights, and persona matching from the merged evidence
Available Sources
Profile data
Fields Provided
- Current job title and company
- Work history (last 5 positions)
- Education history
- Skills and endorsements
- Profile photo URL
- Recent activity and posts
Confidence Range
0.90–0.98
Data Freshness
Real-time
Requirements
Connect a LinkedIn account from Settings → Integrations
Hunter.io
APIEmail intelligence
Fields Provided
- Email verification
- Deliverability status
- Email pattern detection
- Domain search
- Company email format
Confidence Range
0.85–0.95
Data Freshness
Real-time
Requirements
Included in all plans
Perplexity
AI ResearchCompany intelligence
Fields Provided
- Company background
- Recent news and announcements
- Funding and financials
- Products and services
- Competitive landscape
Confidence Range
0.70–0.85
Data Freshness
Near real-time
Requirements
Included in all plans
Tavily
Web SearchWeb presence
Fields Provided
- Company website data
- Social media presence
- Press mentions
- Industry associations
- Public records
Confidence Range
0.65–0.80
Data Freshness
Weekly crawls
Requirements
Included in all plans
Source Portfolio Quality
Before enrichment begins, we analyze what sources can contribute based on your input:
| Tier | Score | Description |
|---|---|---|
| Excellent | ≥0.85 | All key sources available (LinkedIn + email + company) |
| Very Good | ≥0.70 | Most sources available, high-quality enrichment expected |
| Good | ≥0.50 | Core sources available, solid enrichment |
| Moderate | ≥0.30 | Limited sources, basic enrichment possible |
| Poor | <0.30 | Insufficient data, enrichment may fail or be incomplete |
Improve Your Portfolio Score
- • Include LinkedIn profile URLs for person enrichment
- • Provide company domain for company enrichment
- • Connect a LinkedIn account from Settings → Integrations
Controlling What Comes Back
All enabled sources run by default. Use include to pull extra aspects (LinkedIn profile, contact info) into the response:
// POST /api/v2/enrichments — pull in extra aspects via "include"
{
"targets": [
{ "type": "person", "email": "[email protected]" }
],
"include": ["enrichment", "linkedin_profile", "contact_info"]
}
// Default — core enrichment only (all enabled sources run)
{
"targets": [
{ "type": "person", "email": "[email protected]" }
]
// "include" defaults to ["enrichment"]
}