Documentation Index
Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Playbook
Dropleads Playbook
Use Dropleads as a two-phase flow: low-cost segment discovery first, paid enrichment second.1) Start with low-cost discovery
- Use
dropleads_get_lead_countto size the audience before any paid call. - Use
dropleads_search_peopleto inspect masked contacts and validate ICP filters (free). - Tighten filters until sample rows clearly match role, industry, and geo expectations.
- Key filter fields:
filters.jobTitles,filters.seniority(C-Level/VP/Director/Manager/Senior/Entry/Intern),filters.industries,filters.departments,filters.companyDomains,filters.employeeRanges,filters.personalCountries.include(for geo),pagination.page,pagination.limit.
Filter best practices
All Dropleads filters nest under thefilters object. Pagination nests under pagination. The canonical payload shape:
| Filter | Correct key | Why |
|---|---|---|
| Company | filters.companyDomains | Exact domain match. companyNames does fuzzy substring matching — “Microsoft” pulls in unrelated businesses. 53K+ results at microsoft.com confirmed. |
| Country | filters.personalCountries.include | Array inside a nested object. |
| Seniority | filters.seniority | Exact values only: C-Level, VP, Director, Manager, Senior, Entry, Intern. |
| Industry | filters.industries | Exact strings from Dropleads. Pilot with a broad search first when unsure. |
2) Escalate paid calls only for shortlisted targets
- Run
dropleads_email_finderfor contacts that passed the discovery pass. - Run
dropleads_mobile_finderonly when phone is required for the workflow. - Keep pilots small first, then scale after quality checks pass.
3) Gate outbound with verifier status
- Treat
invalid,catch_all, andunknownas non-send by default. - Treat
validas the only status that passes automatic send gates. - Respect
credits_chargedin responses for post-execution billing accuracy.
4) Practical sequencing
- Count segment (
dropleads_get_lead_count). - Sample segment (
dropleads_search_people). - Pre-score titles with
run_javascriptif looking for a specific profile (e.g. founders, GTM engineers). - Scrape LinkedIn profiles with
apify_run_actor_syncfor work history/signals (preferred overcall_ai— structured data, faster, cheaper). - Extract signals with
run_javascriptfrom Apify output (e.g. founder detection, hiring signals). - Enrich emails via waterfall (
dropleads_email_finderfirst, then other providers). - Verify candidate emails (
dropleads_email_verifierorleadmagic_email_validation). - Expand only after pilot quality is confirmed.