# Enrich SaaS Companies End to End

**Use case:** 

Runs the prospect engine over a list of saas companies, returning firmographics, social profiles and an ICP score per company.

## Input

```json
{
  "mode": "enrich_companies",
  "domains": [
    "datadoghq.com",
    "atlassian.com",
    "asana.com",
    "monday.com"
  ],
  "company_names": [],
  "keywords": [
    "copy editor",
    "proofreader",
    "content editor"
  ],
  "country": "us",
  "lookback_days": "30",
  "max_results": "25",
  "max_pages": "1",
  "new_postings_only": "false",
  "remote_only": "false",
  "exclude_staffing": "true",
  "exclude_marketplaces": "true",
  "extra_marketplaces": [],
  "fetch_posting_page": "true",
  "target_contacts": "3",
  "target_roles": [],
  "deny_tokens": [],
  "company_concurrency": "6",
  "contact_concurrency": "3",
  "max_spend_usd": "10",
  "job_titles": [],
  "seniority": [],
  "departments": [],
  "include_email": "false",
  "verify_email": "true",
  "verify_position": "true",
  "personalize": "true",
  "score_icp": "true",
  "icp_preset": "generic_b2b",
  "min_icp_score": "45",
  "extra_exclude_names": [],
  "include_social": "true",
  "source_timeout_secs": "30",
  "skip_cache": "false",
  "source_tag": "b2b-prospect-engine:prospect-engine-enrich-saas"
}
```

## Output

```json
{
  "mode": {
    "label": "Mode",
    "format": "string"
  },
  "row_type": {
    "label": "Row Type",
    "format": "string"
  },
  "company_name": {
    "label": "Company Name",
    "format": "string"
  },
  "company_domain": {
    "label": "Company Domain",
    "format": "string"
  },
  "employer_name": {
    "label": "Employer Name",
    "format": "string"
  },
  "employer_confidence": {
    "label": "Employer Confidence",
    "format": "integer"
  },
  "needs_review": {
    "label": "Needs Review",
    "format": "boolean"
  },
  "job_title": {
    "label": "Job Title",
    "format": "string"
  },
  "signal_type": {
    "label": "Signal Type",
    "format": "string"
  },
  "signal_strength": {
    "label": "Signal Strength",
    "format": "string"
  },
  "icp_score": {
    "label": "Icp Score",
    "format": "integer"
  },
  "icp_tier": {
    "label": "Icp Tier",
    "format": "string"
  },
  "company_linkedin_url": {
    "label": "Company Linkedin Url",
    "format": "string"
  },
  "employee_count": {
    "label": "Employee Count",
    "format": "integer"
  },
  "industry": {
    "label": "Industry",
    "format": "string"
  },
  "hq_location": {
    "label": "Hq Location",
    "format": "string"
  },
  "contact_full_name": {
    "label": "Contact Full Name",
    "format": "string"
  },
  "contact_title": {
    "label": "Contact Title",
    "format": "string"
  },
  "contact_linkedin_url": {
    "label": "Contact Linkedin Url",
    "format": "string"
  },
  "contact_email": {
    "label": "Contact Email",
    "format": "string"
  },
  "contact_email_status": {
    "label": "Contact Email Status",
    "format": "string"
  },
  "data_completeness": {
    "label": "Data Completeness",
    "format": "integer"
  },
  "run_date": {
    "label": "Run Date",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Prospect Engine: B2B Company and Contact Enrichment](https://apify.com/mambalabs/b2b-prospect-engine.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mambalabs/b2b-prospect-engine.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/mambalabs/b2b-prospect-engine.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
