Enrich
Look up a contact by email or LinkedIn URL. Returns verified email, direct-dial phone, firmographics, and tech stack.
Single enrichment
UI demo — wires to https://api-leadgen.jonlynchfinancial.com/v1/enrich on submit.
Bulk enrichment
Upload a CSV with one email or LinkedIn URL per row. We process in batches and webhook results to your endpoint.
Drop CSV here, or browse
Max 25 MB · 250K rows
API reference
full docs →Single enrichment by email:
curl https://api-leadgen.jonlynchfinancial.com/v1/enrich \
-H "Authorization: Bearer $LG_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email":"[email protected]"}'
# Response (200):
{
"person": {
"name": "Jane Doe", "title": "VP Engineering",
"linkedin": "https://linkedin.com/in/janedoe"
},
"email": {"address":"[email protected]","verified":true,"deliverability":0.94},
"phone": {"direct":"+1-415-555-0123","confidence":0.71},
"company": {
"name": "Acme Corp", "domain":"acme.com",
"industry":"SaaS", "headcount":"50-200",
"revenue_est":"$10M-$50M",
"tech_stack":["Stripe","Snowflake","Datadog"]
},
"credits_used": 1, "credits_remaining": 17
}