Skip to content

cognoco/enrichapi-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

EnrichAPI Python SDK

Python client for EnrichAPI — instant AI-powered B2B company intelligence.

Install

pip install enrichapi

Quick Start

from 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 score

Methods

enrich(url, depth="standard")

Enrich a company domain. Returns a dict with:

  • company — name, description, industry, size, stage, HQ
  • icp_profile — fit score, fit rationale, buyer persona
  • pain_hypotheses — 3 ranked pain points with confidence scores
  • tech_stack — detected tools and implications
  • growth_signals — recent funding, hiring, expansion signals
  • outreach_angles — personalized cold outreach suggestions
  • metadata — enriched_at, depth, confidence, credits_used

depth options:

  • "quick" — Fast overview (~5s). Company basics only.
  • "standard" — Full intelligence (~15s). All fields populated.

usage()

Returns current API key usage stats.

health()

Returns API health status.

Context Manager

with EnrichAPIClient(api_key="...") as client:
    result = client.enrich("hubspot.com", depth="standard")

Pricing

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

License

MIT

About

Python SDK for EnrichAPI — AI-powered B2B company intelligence

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages