# Company Signal Enrichment V2 by Signaliz (`signaliz/company-signal-enrichment-v2`) Actor

Enrich company records with recent buying signals, summaries, evidence, and Signaliz signal intelligence.

- **URL**: https://apify.com/signaliz/company-signal-enrichment-v2.md
- **Developed by:** [Signaliz](https://apify.com/signaliz) (community)
- **Categories:** Lead generation, Agents, Automation
- **Stats:** 4 total users, 3 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$5.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

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).


# README

## Company Signal Enrichment V2 by Signaliz

Enrich companies with recent GTM signals through the Signaliz public API. This Actor wraps `POST /company-signal-enrichment-v2` and returns one structured dataset item per company.

### What it does

- Accepts one company, JSON records, pasted CSV, a CSV URL, or an Apify dataset ID.
- Supports `company_name`, `domain`, `company_domain`, LinkedIn URL, signal types, target signal count, lookback window, online mode, and model override.
- Defaults to `google/gemini-3.1-flash-lite`.
- Preserves every original input column.
- Appends signal count, signals, intelligence, credit usage, errors, normalized request, and raw Signaliz response.
- Retries transient `429` and `5xx` responses with bounded backoff.
- Writes one dataset item per input row and a summary to the key-value store under `SUMMARY` and `OUTPUT`.

### Input

For a single company:

```json
{
  "company_name": "Stripe",
  "domain": "stripe.com",
  "target_signal_count": 3
}
````

For batches, use `records`, `csv_text`, `csv_url`, or `source_dataset_id`. Each row should include at least one of `company_name`, `domain`, `company_domain`, or `linkedin_url`.

### Output

Each dataset item includes the original row plus fields like:

```json
{
  "company_name": "Stripe",
  "domain": "stripe.com",
  "success": true,
  "signal_count": 3,
  "signals": [],
  "intelligence": {},
  "credits_used": 3,
  "normalized_request": {
    "company_name": "Stripe",
    "domain": "stripe.com",
    "target_signal_count": 3,
    "model": "google/gemini-3.1-flash-lite"
  },
  "raw_response": {}
}
```

### Pricing

Pay per result through Apify. The Actor uses the synthetic default dataset item event, so each dataset item is one billable result.

### About Signaliz

Signaliz is a GTM data quality platform by Content Marketing Media. It powers enrichment, validation, and signal workflows for outbound teams operating at serious volume.

# Actor input Schema

## `company_name` (type: `string`):

Company name for a single company.

## `domain` (type: `string`):

Company domain for a single company.

## `company_domain` (type: `string`):

Company domain alias used by Signaliz APIs and CSV exports.

## `records` (type: `array`):

Batch company rows. Each row should include company\_name, company\_domain, domain, or linkedin\_url.

## `csv_text` (type: `string`):

Paste CSV with company columns. Original columns are preserved in output.

## `csv_url` (type: `string`):

Public URL to a CSV file.

## `source_dataset_id` (type: `string`):

Read company rows from another Apify dataset.

## `datasetId` (type: `string`):

Alias for source\_dataset\_id. Included for compatibility with existing Signaliz Apify actors.

## `signal_types` (type: `array`):

Signal categories to search for.

## `target_signal_count` (type: `integer`):

How many signals to target per company.

## `lookback_days` (type: `integer`):

How far back Signaliz should search.

## `model` (type: `string`):

OpenRouter model ID used by Signaliz.

## `online` (type: `boolean`):

Enable online search mode.

## `chunk_size` (type: `integer`):

Rows grouped before the next bounded processing slice.

## `max_concurrency` (type: `integer`):

Maximum simultaneous Signaliz API calls.

## Actor input object example

```json
{
  "company_name": "Stripe",
  "domain": "stripe.com",
  "signal_types": [
    "hiring",
    "funding",
    "product_launch",
    "partnership",
    "leadership_change"
  ],
  "target_signal_count": 3,
  "lookback_days": 90,
  "model": "google/gemini-3.1-flash-lite",
  "online": false,
  "chunk_size": 25,
  "max_concurrency": 5
}
```

# Actor output Schema

## `results` (type: `string`):

One row per processed company.

## `summary` (type: `string`):

Aggregate counts, credit totals, and elapsed time.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "company_name": "Stripe",
    "domain": "stripe.com"
};

// Run the Actor and wait for it to finish
const run = await client.actor("signaliz/company-signal-enrichment-v2").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "company_name": "Stripe",
    "domain": "stripe.com",
}

# Run the Actor and wait for it to finish
run = client.actor("signaliz/company-signal-enrichment-v2").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "company_name": "Stripe",
  "domain": "stripe.com"
}' |
apify call signaliz/company-signal-enrichment-v2 --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=signaliz/company-signal-enrichment-v2",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Company Signal Enrichment V2 by Signaliz",
        "description": "Enrich company records with recent buying signals, summaries, evidence, and Signaliz signal intelligence.",
        "version": "1.0",
        "x-build-id": "cSuVz8HA1Ym8U8MQY"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/signaliz~company-signal-enrichment-v2/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-signaliz-company-signal-enrichment-v2",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/signaliz~company-signal-enrichment-v2/runs": {
            "post": {
                "operationId": "runs-sync-signaliz-company-signal-enrichment-v2",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/signaliz~company-signal-enrichment-v2/run-sync": {
            "post": {
                "operationId": "run-sync-signaliz-company-signal-enrichment-v2",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "company_name": {
                        "title": "Company name",
                        "type": "string",
                        "description": "Company name for a single company."
                    },
                    "domain": {
                        "title": "Domain",
                        "type": "string",
                        "description": "Company domain for a single company."
                    },
                    "company_domain": {
                        "title": "Company domain",
                        "type": "string",
                        "description": "Company domain alias used by Signaliz APIs and CSV exports."
                    },
                    "records": {
                        "title": "Company records",
                        "type": "array",
                        "description": "Batch company rows. Each row should include company_name, company_domain, domain, or linkedin_url.",
                        "items": {
                            "type": "object"
                        }
                    },
                    "csv_text": {
                        "title": "CSV text",
                        "type": "string",
                        "description": "Paste CSV with company columns. Original columns are preserved in output."
                    },
                    "csv_url": {
                        "title": "CSV URL",
                        "type": "string",
                        "description": "Public URL to a CSV file."
                    },
                    "source_dataset_id": {
                        "title": "Apify Dataset ID",
                        "type": "string",
                        "description": "Read company rows from another Apify dataset."
                    },
                    "datasetId": {
                        "title": "Apify Dataset ID (alias)",
                        "type": "string",
                        "description": "Alias for source_dataset_id. Included for compatibility with existing Signaliz Apify actors."
                    },
                    "signal_types": {
                        "title": "Signal types",
                        "type": "array",
                        "description": "Signal categories to search for.",
                        "items": {
                            "type": "string"
                        },
                        "default": [
                            "hiring",
                            "funding",
                            "product_launch",
                            "partnership",
                            "leadership_change"
                        ]
                    },
                    "target_signal_count": {
                        "title": "Target signal count",
                        "minimum": 1,
                        "maximum": 25,
                        "type": "integer",
                        "description": "How many signals to target per company.",
                        "default": 3
                    },
                    "lookback_days": {
                        "title": "Lookback days",
                        "minimum": 1,
                        "maximum": 365,
                        "type": "integer",
                        "description": "How far back Signaliz should search.",
                        "default": 90
                    },
                    "model": {
                        "title": "Model",
                        "type": "string",
                        "description": "OpenRouter model ID used by Signaliz.",
                        "default": "google/gemini-3.1-flash-lite"
                    },
                    "online": {
                        "title": "Online mode",
                        "type": "boolean",
                        "description": "Enable online search mode.",
                        "default": false
                    },
                    "chunk_size": {
                        "title": "Chunk size",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Rows grouped before the next bounded processing slice.",
                        "default": 25
                    },
                    "max_concurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 25,
                        "type": "integer",
                        "description": "Maximum simultaneous Signaliz API calls.",
                        "default": 5
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
