# CSV Local Business List Scoring & SEO Gap Report (`taroyamada/csv-local-business-list-scoring-report`) Actor

Turn pasted CSV business lists into CRM hygiene, local SEO gap, and prioritization reports without scraping Google Maps or extracting contacts.

- **URL**: https://apify.com/taroyamada/csv-local-business-list-scoring-report.md
- **Developed by:** [太郎 山田](https://apify.com/taroyamada) (community)
- **Categories:** Business, Lead generation, SEO tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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

## CSV Local Business List Scoring & SEO Gap Report

Turn pasted CSV business lists into CRM hygiene, local SEO gap, and prioritization reports without scraping Google Maps or extracting contacts.

### First run

Use the pasted/basic input, choose `reportTier`, and set `maxChargeUsd` as a safety cap. `sourceDatasetId` is advanced-only and is not needed for the first run. Demo mode and dry run are always no-charge.

**Basic input:** csvText or businesses

**No-charge boundaries:** Google Maps scraping, URL resolution, and contact harvesting are not performed. Incomplete rows become no-charge summaries.

### Pricing ladder

| Tier | Planned price | PPE event | Output value |
| --- | ---: | --- | --- |
| entry | $3 | `lead_scoring_report` | CSV lead scoring report with priority buckets and basic local SEO/list hygiene gaps |
| premium | $15 | `agency_lead_gap_report` | Agency-ready segment comparison with list quality, SEO gaps, and suggested client/audience buckets |

Public launch exposes only `entry` and `premium`. Watch/audit templates are planned after adoption proof and are not selectable or promoted during launch.

### Output

Every dataset row includes `status`, `chargedEvent`, `reason`, `sourceUrls`, and `errors`. Blocked, invalid, partial, low-confidence, demo, dry-run, and limit-reached rows are no-charge with `chargedEvent: null`.

<!-- v15.5-next-actors:start -->
### Next Actors And Recurring Templates

- Use `entry` for a first paid report and `premium` when the output needs buyer-ready comparison or recommendations.
- Keep `sourceDatasetId` for advanced workflows only. First-run examples use pasted input or public URLs plus `demoMode` / `dryRun`.
- After a useful report, create an Apify task from the same input for weekly or monthly refreshes and keep `maxChargeUsd` at the tier price you expect.

Related internal flow:
- [procurement-intel-actor](https://apify.com/taroyamada/procurement-intel-actor)
- [shopify-store-intelligence](https://apify.com/taroyamada/shopify-store-intelligence)
- [youtube-transcript-bulk-api](https://apify.com/taroyamada/youtube-transcript-bulk-api)
- [youtube-channel-transcript-rag-intelligence](https://apify.com/taroyamada/youtube-channel-transcript-rag-intelligence)
- [website-content-extractor](https://apify.com/taroyamada/website-content-extractor)
<!-- v15.5-next-actors:end -->

<!-- v16.5-quality-price-fit:start -->
### Quality And Price Fit

Initial public promotion is limited to `entry` and `premium`. Watch/audit templates stay planned and proof-gated until paid adoption proves buyers value the report instead of raw extraction.

- Buyer workflow replaced: Replace manual CSV triage, list hygiene review, and priority bucketing before outreach or local SEO work.
- Public proof required before promotion: paid entry usage, premium conversion, no value complaints, and support below the v22 budget.
- High-tier unlock requires 5 unique lower-tier paid buyers, 10 successful proof runs/tasks, and 2 actual paid/prepaid/signed high-tier buyers.
<!-- v16.5-quality-price-fit:end -->

# Actor input Schema

## `csvText` (type: `string`):

Paste CSV rows with businessName/name, city, category, rating, reviewCount, and website columns.
## `businesses` (type: `array`):

Optional structured business rows.
## `reportTier` (type: `string`):

Choose entry or premium. Watch/audit templates are proof-gated and not selectable during public launch; maxChargeUsd is only a safety cap.
## `maxChargeUsd` (type: `number`):

Safety cap for this run. This cap always wins before charging any report group.
## `demoMode` (type: `boolean`):

Run a sample with no external fetch and no charge.
## `dryRun` (type: `boolean`):

Return a no-charge previewReport with nextRunInput and estimated cost.
## `maxReports` (type: `integer`):

Advanced. Maximum report groups to charge; maxChargeUsd is still checked first.
## `sourceDatasetId` (type: `string`):

Advanced only. Optional Apify dataset ID for prepared input rows. Not needed for the first run.
## `webhookUrl` (type: `string`):

Advanced. Optional URL to receive results outside Apify.

## Actor input object example

```json
{
  "csvText": "",
  "businesses": [],
  "reportTier": "entry",
  "maxChargeUsd": 3,
  "demoMode": false,
  "dryRun": true,
  "maxReports": 1,
  "sourceDatasetId": "",
  "webhookUrl": ""
}
````

# 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("taroyamada/csv-local-business-list-scoring-report").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("taroyamada/csv-local-business-list-scoring-report").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 '{}' |
apify call taroyamada/csv-local-business-list-scoring-report --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=taroyamada/csv-local-business-list-scoring-report",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "CSV Local Business List Scoring & SEO Gap Report",
        "description": "Turn pasted CSV business lists into CRM hygiene, local SEO gap, and prioritization reports without scraping Google Maps or extracting contacts.",
        "version": "0.1",
        "x-build-id": "bwFAzOrYiaG2LlMpn"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/taroyamada~csv-local-business-list-scoring-report/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-taroyamada-csv-local-business-list-scoring-report",
                "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/taroyamada~csv-local-business-list-scoring-report/runs": {
            "post": {
                "operationId": "runs-sync-taroyamada-csv-local-business-list-scoring-report",
                "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/taroyamada~csv-local-business-list-scoring-report/run-sync": {
            "post": {
                "operationId": "run-sync-taroyamada-csv-local-business-list-scoring-report",
                "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": {
                    "csvText": {
                        "title": "CSV text",
                        "type": "string",
                        "description": "Paste CSV rows with businessName/name, city, category, rating, reviewCount, and website columns.",
                        "default": ""
                    },
                    "businesses": {
                        "title": "Business rows",
                        "type": "array",
                        "description": "Optional structured business rows.",
                        "default": []
                    },
                    "reportTier": {
                        "title": "Report tier",
                        "enum": [
                            "entry",
                            "premium"
                        ],
                        "type": "string",
                        "description": "Choose entry or premium. Watch/audit templates are proof-gated and not selectable during public launch; maxChargeUsd is only a safety cap.",
                        "default": "entry"
                    },
                    "maxChargeUsd": {
                        "title": "Max charge USD",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "number",
                        "description": "Safety cap for this run. This cap always wins before charging any report group.",
                        "default": 3
                    },
                    "demoMode": {
                        "title": "Demo mode",
                        "type": "boolean",
                        "description": "Run a sample with no external fetch and no charge.",
                        "default": false
                    },
                    "dryRun": {
                        "title": "Dry run",
                        "type": "boolean",
                        "description": "Return a no-charge previewReport with nextRunInput and estimated cost.",
                        "default": true
                    },
                    "maxReports": {
                        "title": "Advanced max reports",
                        "minimum": 1,
                        "maximum": 25,
                        "type": "integer",
                        "description": "Advanced. Maximum report groups to charge; maxChargeUsd is still checked first.",
                        "default": 1
                    },
                    "sourceDatasetId": {
                        "title": "Advanced source dataset ID",
                        "type": "string",
                        "description": "Advanced only. Optional Apify dataset ID for prepared input rows. Not needed for the first run.",
                        "default": ""
                    },
                    "webhookUrl": {
                        "title": "Advanced webhook URL",
                        "type": "string",
                        "description": "Advanced. Optional URL to receive results outside Apify.",
                        "default": ""
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
