# Manta Business Scraper — SMB Leads (US) (`scrapersdelight/manta-business-scraper`) Actor

Extract US small-business leads from Manta.com: company name, phone, website, full address, industry (NAICS/ISIC), employees, founding date and social links. Filter by state and industry. Clean JSON-LD, no login.

- **URL**: https://apify.com/scrapersdelight/manta-business-scraper.md
- **Developed by:** [Scrapers Delight](https://apify.com/scrapersdelight) (community)
- **Categories:** Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$5.00 / 1,000 per business returneds

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

## Manta Business Scraper — US SMB Leads

Turn Manta.com's US small-business directory into a clean lead list — company **name, phone, website, full address, and industry (NAICS/ISIC)** — filterable by **state** and **industry**. No login.

Every Manta company profile publishes a complete `LocalBusiness` structured-data block, so records are clean and consistent (not fragile HTML scraping).

### What you get

One row per business, with:

- **name** — company name
- **phone** — business phone (when published)
- **email** — business email **only when the business published one on Manta** (many rows have phone + website but no email — this Actor ships no email guessing or enrichment)
- **website** — the company's own website
- **streetAddress, city, state, zip, country** — full mailing address
- **latitude, longitude** — geocode
- **category** — industry / business category
- **naics, isicV4** — standard industry codes (for TAM / segmentation)
- **numberOfEmployees, foundingDate** — firmographics (when published)
- **socialLinks** — Twitter/X, Facebook, LinkedIn, Instagram profiles
- **description** — the company blurb
- **mantaId, mantaUrl, scrapedAt** — source + provenance

### Use cases

- **Merchant-services & payments prospecting** — phone + website + industry SMB leads for power-dialer / SDR teams.
- **Local SEO & marketing agency lead lists** — target one industry across a metro or state.
- **Power-dialer feeds** — geo × industry slices ("plumbers in Dallas", "HVAC in Texas").
- **Market / TAM research by NAICS** — size and segment a local market by standard industry code.

### How to use

Two modes:

**1. Search by state / industry** (`mode: "search"`)
- `states`: one or more US states — 2-letter codes or full names (e.g. `["TX"]`, `["California","Florida"]`).
- `industryKeyword` (optional): keeps only businesses whose category / name matches (e.g. `plumbing`, `hvac`, `dentist`). Blank = every business in the state.

**2. From start URLs** (`mode: "startUrls"`)
- Paste Manta listing pages `/mb_.../{industry}/{city}` (the Actor extracts every company on them, following pagination) and/or direct profile pages `/c/{id}/{slug}`.

Common options:
- `requireContact` (default `true`): drop rows that have neither a phone nor a website.
- `maxItems` (default `200`): cost/speed guard; `0` = no cap.
- **Proxy**: Manta intermittently blocks datacenter IPs behind Cloudflare, so **RESIDENTIAL + US** is the default and strongly recommended. The Actor retries on a fresh proxy IP on any block.

#### Input example

```json
{
  "mode": "search",
  "states": ["TX"],
  "industryKeyword": "plumbing",
  "requireContact": true,
  "maxItems": 25,
  "proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "US" }
}
````

#### Output example

```json
{
  "name": "Tribeca Plumbing, Inc.",
  "phone": "(214) 402-5454",
  "email": null,
  "website": "http://www.tribecaplumbinginc.com/",
  "streetAddress": "6211 W Northwest Hwy Ste C251",
  "city": "Dallas",
  "state": "Texas",
  "zip": "75225",
  "country": "United States",
  "latitude": "32.8664357",
  "longitude": "-96.8000069",
  "category": "Plumbing Specialties",
  "naics": "",
  "isicV4": "1711",
  "numberOfEmployees": "",
  "foundingDate": "",
  "socialLinks": ["https://www.twitter.com/TribecaPlumber", "http://www.facebook.com/tribecaplumbingtx/"],
  "description": "Your Dallas/Ft. Worth Plumbing Experts…",
  "mantaId": "mh1g4hf",
  "mantaUrl": "https://www.manta.com/c/mh1g4hf/tribeca-plumbing-inc",
  "scrapedAt": "2026-07-07T16:00:00.000Z"
}
```

### Pricing

Pay per result: **one charge per business record delivered** (`business-scraped`). You pay only for the rows the Actor actually hands you.

### FAQ

- **Do I need a Manta login?** No. All fields come from public company profiles.
- **Why is `email` often empty?** Manta only shows an email when the business published one. This Actor does not guess or enrich emails — it reports what Manta publishes (most rows have phone + website).
- **Why residential proxy?** Manta's Cloudflare bot-management intermittently blocks datacenter IPs. Residential (US) IPs fetch reliably; the Actor auto-retries on a fresh IP if it hits a block.
- **How many businesses can I get?** Manta enumerates ~50,000 companies per state sitemap file and multiple files per state — millions US-wide. Use `maxItems` and `industryKeyword` to scope a run.

### Compliance

You are responsible for complying with Manta's Terms of Service and applicable data/privacy law.

# Actor input Schema

## `mode` (type: `string`):

'search' = by state + optional industry keyword; 'startUrls' = paste Manta /mb listing or /c profile URLs.

## `states` (type: `array`):

2-letter codes or full names (e.g. TX, California). Enumerates that state's sitemap. Leave empty in startUrls mode.

## `industryKeyword` (type: `string`):

Keeps only businesses whose category/name matches (e.g. 'plumbing', 'hvac', 'dentist'). Blank = all businesses in the state.

## `startUrls` (type: `array`):

Manta /mb\_...\_/{industry}/{city} listing pages or /c/{id}/{slug} profile pages.

## `requireContact` (type: `boolean`):

Drops records that have neither phone nor website.

## `maxItems` (type: `integer`):

Cost/speed guard. 0 = no cap.

## `proxyConfiguration` (type: `object`):

Manta flags datacenter IPs (intermittent Cloudflare 403). RESIDENTIAL + US strongly recommended.

## Actor input object example

```json
{
  "mode": "search",
  "states": [
    "TX"
  ],
  "industryKeyword": "plumbing",
  "requireContact": true,
  "maxItems": 200,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

## `records` (type: `string`):

The dataset of scraped Manta business leads (one item per business).

# 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 = {
    "states": [
        "TX"
    ],
    "industryKeyword": "plumbing"
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapersdelight/manta-business-scraper").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 = {
    "states": ["TX"],
    "industryKeyword": "plumbing",
}

# Run the Actor and wait for it to finish
run = client.actor("scrapersdelight/manta-business-scraper").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 '{
  "states": [
    "TX"
  ],
  "industryKeyword": "plumbing"
}' |
apify call scrapersdelight/manta-business-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapersdelight/manta-business-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Manta Business Scraper — SMB Leads (US)",
        "description": "Extract US small-business leads from Manta.com: company name, phone, website, full address, industry (NAICS/ISIC), employees, founding date and social links. Filter by state and industry. Clean JSON-LD, no login.",
        "version": "0.1",
        "x-build-id": "OPOzcgUTfea8pXwgr"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapersdelight~manta-business-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapersdelight-manta-business-scraper",
                "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/scrapersdelight~manta-business-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapersdelight-manta-business-scraper",
                "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/scrapersdelight~manta-business-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapersdelight-manta-business-scraper",
                "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": {
                    "mode": {
                        "title": "Scrape mode",
                        "enum": [
                            "search",
                            "startUrls"
                        ],
                        "type": "string",
                        "description": "'search' = by state + optional industry keyword; 'startUrls' = paste Manta /mb listing or /c profile URLs.",
                        "default": "search"
                    },
                    "states": {
                        "title": "US states",
                        "type": "array",
                        "description": "2-letter codes or full names (e.g. TX, California). Enumerates that state's sitemap. Leave empty in startUrls mode.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "industryKeyword": {
                        "title": "Industry keyword filter (optional)",
                        "type": "string",
                        "description": "Keeps only businesses whose category/name matches (e.g. 'plumbing', 'hvac', 'dentist'). Blank = all businesses in the state."
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Manta /mb_..._/{industry}/{city} listing pages or /c/{id}/{slug} profile pages.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "requireContact": {
                        "title": "Only businesses with a phone or website",
                        "type": "boolean",
                        "description": "Drops records that have neither phone nor website.",
                        "default": true
                    },
                    "maxItems": {
                        "title": "Max businesses",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Cost/speed guard. 0 = no cap.",
                        "default": 200
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Manta flags datacenter IPs (intermittent Cloudflare 403). RESIDENTIAL + US strongly recommended.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "US"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
