# Company Website & Domain Finder — $0.50/1K (`scrapesignal_labs/company-website-domain-finder`) Actor

Turn company names into likely official websites and domains. Export ranked candidates, confidence scores, search evidence, titles, descriptions, and normalized domains for lead enrichment.

- **URL**: https://apify.com/scrapesignal\_labs/company-website-domain-finder.md
- **Developed by:** [ScrapeSignal Labs](https://apify.com/scrapesignal_labs) (community)
- **Categories:** Lead generation, AI, Marketing
- **Stats:** 3 total users, 2 monthly users, 83.3% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.50 / 1,000 company domain results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **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 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 Website & Domain Finder

Turn a list of company names into ranked likely official websites and normalized domains. This is a practical first step for B2B enrichment, CRM cleanup, account research, prospecting, and feeding verified company sites into contact or technology-detection workflows.

The Actor searches public web results, removes common social networks and business directories, scores domain/title/description matches, and preserves ranked evidence rather than pretending every match is certain.

### Output

Each company produces one row with the likely website and domain when the confidence threshold is reached, a numeric confidence score, matched company-name tokens, search title and description, and up to ten ranked candidates for review.

### Example input

```json
{
  "companyNames": ["OpenAI", "Stripe"],
  "location": "United States",
  "maxCandidates": 5,
  "minimumConfidence": 0.35
}
```

### Pricing

The introductory price is **$0.50 per 1,000 company results** plus a **$0.00005 Actor-start event**. Platform usage is paid by the buyer. A dataset item represents a completed search and evidence record, including cases where no candidate reaches the buyer's requested confidence threshold.

Search results and company websites change. Use the score and retained candidates as evidence, and review high-stakes matches before acting on them.

# Actor input Schema

## `companyNames` (type: `array`):

One business or organization name per line.

## `location` (type: `string`):

Optional city, state, or country added to each search to disambiguate local companies.

## `industry` (type: `string`):

Optional industry keyword added to each search.

## `maxCandidates` (type: `integer`):

Number of supporting candidates to keep in each result.

## `minimumConfidence` (type: `number`):

Only set the primary website when its score reaches this 0-to-1 threshold. Candidate evidence is still returned.

## `timeoutSeconds` (type: `integer`):

Maximum seconds for each public search request.

## Actor input object example

```json
{
  "companyNames": [
    "OpenAI",
    "Stripe"
  ],
  "location": "",
  "industry": "",
  "maxCandidates": 5,
  "minimumConfidence": 0.35,
  "timeoutSeconds": 20
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapesignal_labs/company-website-domain-finder").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("scrapesignal_labs/company-website-domain-finder").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{}' |
apify call scrapesignal_labs/company-website-domain-finder --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,scrapesignal_labs/company-website-domain-finder"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/XkCXnbL1LwCSGfJ47/builds/XvtZ1yCB5bGYnMeMZ/openapi.json
