Website Audit Leads — Python SDK
Thin Python client for the hosted Website Audit Leads Apify Actor. Preview a target audience, export a bounded page of audited website opportunities, and continue later without maintaining scraping or data infrastructure.
The public package contains only an Apify API client. It does not include the Actor's internal implementation, private data sources or credentials.
Install
pip install git+https://github.com/apivault-labs/website-audit-leads-python.git
Set APIFY_API_TOKEN, then preview a segment:
from website_audit_leads import WebsiteAuditLeadsClient
client = WebsiteAuditLeadsClient()
audience = client.preview(
opportunityPreset="seo",
contactRequirement="email",
country=["US"],
)
print(audience["matchingRows"])
Export a small review batch:
rows = client.export(
max_items=50,
opportunityPreset="seo",
contactRequirement="email",
country=["US"],
)
for row in rows:
print(row.get("Root Domain"), row.get("Primary Opportunity"))
After reviewing the page, continue with the Actor-provided input:
continuation = client.last_continuation()
next_input = continuation.get("nextInput")
next_rows = client.continue_export(next_input, max_items=50) if next_input else []
Recommended flow
- Preview the audience without paid lead rows.
- Export 50 leads.
- Manually verify the opportunity and personalize any outreach.
- Send approved rows to the CRM.
- Rerun saved filters over time as the audience grows.
Exported leads follow the Actor's current pay-per-result pricing. Platform usage and a small Actor-start charge may also apply. Audit scores are prioritization signals, not a warranty, certification or substitute for manual review.
Use business contact data in accordance with applicable privacy, marketing and anti-spam laws. Respect opt-outs and platform terms.
License
MIT.
Release files for website-audit-leads 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| website_audit_leads-0.1.0.tar.gz | 5.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| website_audit_leads-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 11.8 kB
Release files / website_audit_leads-0.1.0.tar.gz
| Download URL | website_audit_leads-0.1.0.tar.gz |
|---|---|
| Size | 5.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7860fcbe88b2cf18011038807c049cd21dde0572d3de789c85fb86caa6f5fd94
|
|
BLAKE2b-256 checksum How to use checksums |
5a3d9ecad7715741e61db5601810ad52800792acfd0e2da9cd021d9c7587ed9d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.12.14
|
Release files / website_audit_leads-0.1.0-py3-none-any.whl
| Download URL | website_audit_leads-0.1.0-py3-none-any.whl |
|---|---|
| Size | 6.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
6091e39b101d80842baa9a9667d30e1aaa720b831e30be964e5e4a314a5156e1
|
|
BLAKE2b-256 checksum How to use checksums |
25b0f53a21bfb70b947b208175cd7aec1aa463f6b312dcc8b3a48f0c760c816e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.12.14
|