Python client for EnrichAPI — instant AI-powered B2B company intelligence.
pip install enrichapifrom enrichapi import EnrichAPIClient
# Get a free trial key at http://72.62.52.171:8000/#trial
client = EnrichAPIClient(api_key="your-api-key")
result = client.enrich("stripe.com")
print(result["company"]["name"]) # Stripe
print(result["pain_hypotheses"][0]) # First pain hypothesis
print(result["icp_profile"]["score"]) # ICP fit scoreEnrich a company domain. Returns a dict with:
company— name, description, industry, size, stage, HQicp_profile— fit score, fit rationale, buyer personapain_hypotheses— 3 ranked pain points with confidence scorestech_stack— detected tools and implicationsgrowth_signals— recent funding, hiring, expansion signalsoutreach_angles— personalized cold outreach suggestionsmetadata— enriched_at, depth, confidence, credits_used
depth options:
"quick"— Fast overview (~5s). Company basics only."standard"— Full intelligence (~15s). All fields populated.
Returns current API key usage stats.
Returns API health status.
with EnrichAPIClient(api_key="...") as client:
result = client.enrich("hubspot.com", depth="standard")| Plan | Credits/mo | Price |
|---|---|---|
| Free trial | 5 | Free |
| Starter | 500 | $49/mo |
| Pro | 2,000 | $149/mo |
Get your key: http://72.62.52.171:8000/#trial
MIT