# SheetEnrich Pro – Company, Email & Website Finder (`nour27/sheetenrich-pro`) Actor

Enrich Excel or CSV company lists with official websites, public business emails, phone numbers, LinkedIn profiles, source URLs, and confidence scores. Automatically discovers missing company websites and returns CRM-ready data.

- **URL**: https://apify.com/nour27/sheetenrich-pro.md
- **Developed by:** [HARZOUNE Noureddine](https://apify.com/nour27) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.00 / 1,000 company processeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

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

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## SheetEnrich Pro – Company, Email & Website Finder

Turn a simple Excel or CSV company list into structured, CRM-ready business data.

SheetEnrich Pro automatically discovers missing official company websites and enriches each company with publicly available business contact information.

### What SheetEnrich Pro finds

For each company, the Actor can return:

- Official company website
- Public business email
- Public business phone number
- LinkedIn profile
- Facebook, Instagram, and X profiles
- Physical business address
- Contact and About pages
- Source URLs
- Website confidence score
- Contact quality score
- Enrichment status

### Perfect for

- B2B lead enrichment
- CRM cleanup
- Prospect research
- Sales operations
- Agency workflows
- Spreadsheet enrichment
- Make, Zapier and n8n workflows
- AI agents and API automations

### Input

Upload an Excel or CSV file.

Recommended columns:

| Column | Required | Purpose |
|---|---|---|
| Company | Recommended | Company or organization name |
| Website | Optional | Existing website; may be blank |
| City | Optional | Improves website discovery |
| Country | Optional | Localizes website discovery |
| Email | Optional | Existing value can be preserved |
| Phone | Optional | Existing value can be preserved |

You can also enter company names manually for quick testing.

### How it works

1. Upload your spreadsheet.
2. Choose the maximum number of companies to process.
3. Keep **Find missing official websites** enabled if websites are missing.
4. SheetEnrich searches for the most likely official company domain.
5. It checks relevant public pages such as Contact, About, Team, Support and Company pages.
6. Results are returned in a clean dataset ready for export.

### Output

SheetEnrich Pro provides several output views:

#### Overview

The most useful fields for quick review.

#### Contact details

Emails, phones, social profiles, addresses and source pages.

#### Discovery & audit

Website discovery information, confidence scores and source URLs.

Results can be exported to:

- Excel
- CSV
- JSON
- XML
- JSONL

They can also be consumed directly through the Apify API.

### Example output

````json
{
  "company": "Datadog",
  "website": "https://datadoghq.com/",
  "websiteFoundBy": "google_search",
  "websiteConfidence": 94,
  "email": "info@datadoghq.com",
  "emailType": "general",
  "emailQuality": "high",
  "phone": "+18663294466",
  "linkedin": "https://www.linkedin.com/company/datadog",
  "physicalAddress": "620 8th Avenue, New York, NY, 10018, US",
  "contactCoverage": "email_and_phone",
  "confidenceScore": 100,
  "dataQuality": "high",
  "status": "enriched"
}



# Actor input Schema

## `spreadsheetUrl` (type: `string`):

Upload an Excel (.xlsx/.xls) or CSV file. Recommended columns: Company, Website, City, Country, Email, Phone. Website can be missing if automatic website discovery is enabled.
## `companies` (type: `array`):

Optional. Add company names, domains, or URLs manually for quick tests.
## `maxRows` (type: `integer`):

Maximum number of businesses to process in this run.
## `findMissingWebsites` (type: `boolean`):

When a row has no website, search Google for the most likely official company website before enrichment.
## `searchCountryCode` (type: `string`):

Optional ISO 2-letter country code used to localize Google results, for example us, fr, gb, ca, de. City and Country columns are also included in each search query.
## `maxSearchResults` (type: `integer`):

How many top Google organic results to score when looking for an official website.
## `pagesPerWebsite` (type: `integer`):

Maximum number of pages checked per company website. Home, Contact, About, Team, Support and legal/contact pages are prioritized.
## `includeSocialLinks` (type: `boolean`):

Find LinkedIn, Facebook, Instagram and X links present on the official website.

## Actor input object example

```json
{
  "companies": [
    "Apify"
  ],
  "maxRows": 100,
  "findMissingWebsites": true,
  "searchCountryCode": "us",
  "maxSearchResults": 5,
  "pagesPerWebsite": 5,
  "includeSocialLinks": true
}
````

# Actor output Schema

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

One output row per processed company, including website discovery, public contact data, sources, and quality signals.

# 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 = {
    "companies": [
        "Apify"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("nour27/sheetenrich-pro").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 = { "companies": ["Apify"] }

# Run the Actor and wait for it to finish
run = client.actor("nour27/sheetenrich-pro").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 '{
  "companies": [
    "Apify"
  ]
}' |
apify call nour27/sheetenrich-pro --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,nour27/sheetenrich-pro"
        }
    }
}
```

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/9CcYeqUYsL70o7lHN/builds/ZXczJ96Cg6Csvmhdd/openapi.json
