3 minQuick Start
Quickstart
Get your first enrichment response in under 3 minutes.
1
Get your API key
Create a free account and generate an API key from your dashboard.
2
Make your first request
Copy this cURL command and replace YOUR_API_KEY with your key:
curl -X POST https://api.abm.dev/v1/enrich \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email": "jane@acme.com"}'3
Get enriched data
You'll receive enriched person and company data with confidence scores:
{
"status": "completed",
"data": {
"person": {
"fullName": "Jane Smith",
"title": "VP of Engineering",
"email": "jane@acme.com"
},
"company": {
"name": "Acme Corp",
"domain": "acme.com",
"employeeCount": "500-1000"
}
},
"confidence": { "person.fullName": 0.95 },
"sources": ["linkedin", "hunter"]
}