Skip to content

bhumanai/enrichanything-public-api-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

enrichanything-public-api

Thin Python client for EnrichAnything's public API.

Use it when you want published market scans or report summaries as structured JSON without rebuilding request URLs yourself.

Install

pip install enrichanything-public-api

Usage

from enrichanything_public_api import EnrichAnythingClient

client = EnrichAnythingClient()

market = client.get_market("shopify-france-klaviyo-no-sms")
print(market["title"])
print(market["sampleRows"][0])

report = client.get_report("france-klaviyo-sms-gap")
print(report["citationText"])

API

EnrichAnythingClient(base_url="https://www.enrichanything.com", timeout=20.0)

  • get_market(slug) calls GET /api/public-market
  • get_report(slug) calls GET /api/public-report

You can also use get_public_market(slug) and get_public_report(slug) if you want simple one-shot helpers.

Docs

Notes

  • These are public, read-only endpoints.
  • The package only wraps published market scans and report summaries.
  • Service behavior is still governed by EnrichAnything's site terms.

About

Thin Python client for EnrichAnything public market scans and report summaries.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages