by Faro
**PredictLeads** is a B2B company-intelligence dataset built for sales, recruiting, investment, and competitive-intelligence teams. Query any company by its root domain and get back structured, source-cited signals. **Available signals** - **Job openings** — full text and metadata of currently advertised and historical roles, scraped directly from company career sites. - **Technology detections** — the company's detected technology stack (analytics, CRM, languages, hosting, payments, ad-tech, …) with confidence scores and first/last-seen timestamps. - **News events** — categorized press, blog, and announcement mentions: acquisitions, leadership changes, funding, partnerships, product launches, awards, and more. - **Financing events** — funding-round history including round type (seed, Series A/B/…, debt, IPO), amount, effective date, and source URLs. - **GitHub repositories** — public repos linked to the company, with descriptions, first-seen timestamps, and engagement timeseries (stars, forks, watchers). **Typical use cases** - Sales prospecting and account scoring (funding raised, hiring velocity, tech-stack fit). - Competitive monitoring (when does a competitor launch, hire, raise, get acquired). - Investment sourcing and due-diligence. - Talent and ecosystem mapping. Each tool is invoked with a company domain (e.g. `pipedream.com`) and returns up to 100 records per page.
Categorized press, blog, and news mentions for a company — acquisitions, leadership changes, partnerships, product launches, awards, and more. Each event includes summary, source URL, found_at, and confidence.
1-indexed page number.
Page size.
Company root domain, e.g. "pipedream.com".
Optional comma-separated event categories to filter, e.g. "acquires,raises_funding,launches_product,hires".
curl -X POST "https://api.askfaro.com/invoke/predictleads/get_company_news_events" \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"arguments": {
"domain": "<domain>"
}
}'faro invoke predictleads/get_company_news_events --params '{"domain":"<domain>"}'Install pip install askfaro-cli, then faro auth login.
Retrieve currently open and historical job postings for a company, sourced directly from its career site. Useful as a hiring signal and to infer team focus, growth, and geographic expansion.
1-indexed page number.
Page size.
Company root domain, e.g. "pipedream.com".
curl -X POST "https://api.askfaro.com/invoke/predictleads/get_company_job_openings" \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"arguments": {
"domain": "<domain>"
}
}'faro invoke predictleads/get_company_job_openings --params '{"domain":"<domain>"}'Install pip install askfaro-cli, then faro auth login.
Financing rounds and funding history for a company — round type (seed, Series A/B/…, debt, IPO), amount, effective date, and source URLs.
1-indexed page number.
Page size.
Company root domain, e.g. "pipedream.com".
curl -X POST "https://api.askfaro.com/invoke/predictleads/get_company_financing_events" \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"arguments": {
"domain": "<domain>"
}
}'faro invoke predictleads/get_company_financing_events --params '{"domain":"<domain>"}'Install pip install askfaro-cli, then faro auth login.
Public GitHub repositories associated with the company, with URL, description, first-seen timestamp, and engagement timeseries (stars, forks, watchers). Useful for gauging open-source footprint and developer activity.
1-indexed page number.
Page size.
Company root domain, e.g. "pipedream.com".
curl -X POST "https://api.askfaro.com/invoke/predictleads/get_company_github_repositories" \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"arguments": {
"domain": "<domain>"
}
}'faro invoke predictleads/get_company_github_repositories --params '{"domain":"<domain>"}'Install pip install askfaro-cli, then faro auth login.
List technologies detected as in use by the company (analytics, CRM, languages, hosting, payment, ad tech, and more), each with a confidence score and first/last-seen timestamps.
1-indexed page number.
Page size.
Company root domain, e.g. "pipedream.com".
curl -X POST "https://api.askfaro.com/invoke/predictleads/get_company_technology_detections" \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"arguments": {
"domain": "<domain>"
}
}'faro invoke predictleads/get_company_technology_detections --params '{"domain":"<domain>"}'Install pip install askfaro-cli, then faro auth login.
B2B company-intelligence dataset built for sales, recruiting, investment, and competitive-intelligence teams. Query a company by its root domain and get structured, sourced signals.
All five tools take a company root domain and return structured signal data.
get_company_job_openingsCurrent and historical job postings sourced directly from a company's career pages — title, location, department, date posted, requirements. Great for sizing hiring velocity and inferring strategic priorities.
get_company_news_eventsCategorized press, blog, and news mentions — acquisitions, leadership changes, product launches, awards, partnerships, security incidents. Each event includes a category, headline, link, and date.
get_company_financing_eventsFunding rounds and financing history — round type (seed, Series A/B/C…), amount, date, investors. Useful for trigger-based outreach and ICP prioritization.
get_company_github_repositoriesPublic GitHub repositories associated with the company — URL, primary language, stars, forks, description. Strong signal for technical organizations and open-source posture.
get_company_technology_detectionsTechnologies detected as in use — analytics, CRM, languages, frameworks, infrastructure. Comparable to BuiltWith / Wappalyzer data with PredictLeads's detection coverage.
{
"domain": "stripe.com"
}
Optional filters (e.g. limit, date ranges, categories) are documented per tool.
Fixed 50 credits (≈ $0.05) per request, charged only on a successful response.
A PredictLeads API key + key ID on the publisher's Faro connection — no user-side configuration required.