Python SDK for the Pounce v2 Entity API — search, look up, and enrich 59M+ verified B2B companies.
Project description
pounce-agent-data
Python SDK for the Pounce v2 Entity API — search, look up, and enrich 59M+ verified B2B companies.
Installation
pip install pounce-agent-data
Quick Start
from pounce_agent_data import PounceClient
client = PounceClient(api_key="your_key")
# Search companies
results, rate = client.search(q="AI companies", country="CH", limit=10)
for company in results["items"]:
print(company["canonical_name"], company["primary_domain"])
# Lookup by domain
company, rate = client.lookup("stripe.com")
print(company["canonical_name"], company["trust_tier"])
# AI semantic search (2 credits)
results, rate = client.semantic_search("fintech startups in Switzerland")
# Full company profile
detail, rate = client.detail(entity_id=12345)
Authentication
Pass your API key directly or set the POUNCE_API_KEY environment variable:
export POUNCE_API_KEY=your_key
client = PounceClient() # reads from env
API Methods
| Method | Credits | Description |
|---|---|---|
search() |
1 | Filter companies by keyword, country, category |
semantic_search() |
2 | AI-powered natural language search |
lookup(domain) |
1 | Find a company by domain |
detail(entity_id) |
1 | Full company profile |
bulk_lookup(domains) |
1/found | Bulk lookup up to 100 domains |
match_score(a, b) |
3 | Similarity score between two companies |
stats() |
0 | Public platform statistics |
Rate Limits
Every response includes rate limit info:
results, rate = client.search(q="test")
print(rate.remaining) # calls remaining this month
print(rate.credits_used) # credits consumed by this call
Plans
| Plan | Monthly Calls | Rate/Min |
|---|---|---|
| Free | 100 | 30 |
| Developer ($39/mo) | 5,000 | 60 |
| Business ($149/mo) | 25,000 | 300 |
| Enterprise ($499/mo) | 200,000 | 1,000 |
Links
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pounce_agent_data-2.0.0.tar.gz.
File metadata
- Download URL: pounce_agent_data-2.0.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d050668e2d42aefc6085056cb935088de73ab6ad4fd996b367131001632ebc61
|
|
| MD5 |
98f5cbf3f92bcf951cd7b976ba2c4695
|
|
| BLAKE2b-256 |
0dba507ccd577ffef63666e47ac22fffa6b54f58386490f9c5b8376c4a379d0f
|
File details
Details for the file pounce_agent_data-2.0.0-py3-none-any.whl.
File metadata
- Download URL: pounce_agent_data-2.0.0-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d070c1b4123f73e3bc159cd2cf8f0ec7c49d9d2e011605b70da3ef8d0fb34206
|
|
| MD5 |
895d0ec581c15d1e48efc3a794559076
|
|
| BLAKE2b-256 |
9afcab5ad37f2307b01703259a2dd66f2f00694640101363c5f9cf9183c7c9b7
|