# Find local businesses whose website needs work

**Use case:** 

Scores the website of every business it finds and returns only the ones below your threshold, with the specific problems and a contact email. For web designers and agencies who sell site rebuilds and need a reason to open the conversation.

## Input

```json
{
  "searchTerms": [
    "plumber",
    "roofing contractor"
  ],
  "location": "Orlando, FL",
  "datasetIds": [],
  "csvUrls": [],
  "inlineRecords": [
    {
      "businessName": "Acme Plumbing",
      "website": "acmeplumbing.com"
    },
    {
      "businessName": "Bluebird Bakery",
      "website": "https://www.bluebirdbakery.co"
    }
  ],
  "maxSites": 40,
  "maxTotalChargeUsd": 10,
  "onlyBelowScore": 60,
  "extractEmails": true,
  "aiPitchSummary": true,
  "pitchTone": "consultative",
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "businessName": {
    "label": "Business",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "healthScore": {
    "label": "Score",
    "format": "integer"
  },
  "grade": {
    "label": "Grade",
    "format": "string"
  },
  "isLead": {
    "label": "Lead",
    "format": "boolean"
  },
  "issueSummary": {
    "label": "Top issues",
    "format": "string"
  },
  "ssl": {
    "label": "SSL",
    "format": "string"
  },
  "mobileFriendly": {
    "label": "Mobile",
    "format": "boolean"
  },
  "ttfbMs": {
    "label": "TTFB ms",
    "format": "integer"
  },
  "pageWeightMb": {
    "label": "Weight MB",
    "format": "number"
  },
  "copyrightYear": {
    "label": "© year",
    "format": "integer"
  },
  "platformDetected": {
    "label": "Platform",
    "format": "string"
  },
  "primaryEmail": {
    "label": "Email",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "pitch": {
    "label": "Pitch",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Audit Lead Finder — Web Design Leads](https://apify.com/jurassic_jove/website-audit-leads.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jurassic_jove/website-audit-leads.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/jurassic_jove/website-audit-leads.md

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