# Find businesses without a website on Google Maps

**Use case:** 

Search Google Maps for a trade in a place and get the businesses with no real website - none listed, only a Facebook or booking page, a free builder site or a dead domain - with their phone, address and rating. This example checks 100 handymen in Houston; change the search terms and the location to your own.

## Input

```json
{
  "searchStringsArray": [
    "handyman"
  ],
  "locationQuery": "Houston, TX, USA",
  "maxCrawledPlacesPerSearch": 100,
  "leadTypes": [
    "no_website",
    "platform_page",
    "builder_subdomain",
    "broken_website"
  ],
  "includeAllPlaces": false,
  "language": "en",
  "placeSource": "scraperlink",
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "proxyFallback": true
}
```

## Output

```json
{
  "name": {
    "label": "Business",
    "format": "text"
  },
  "lead_type": {
    "label": "Lead type",
    "format": "text"
  },
  "lead_reason": {
    "label": "Why it counts",
    "format": "text"
  },
  "phone": {
    "label": "Phone (Google Maps)",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "website": {
    "label": "Website on Google Maps",
    "format": "link"
  },
  "page_url": {
    "label": "Page it uses instead",
    "format": "link"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews_count": {
    "label": "Reviews",
    "format": "number"
  },
  "google_maps_url": {
    "label": "Google Maps",
    "format": "link"
  },
  "billed": {
    "label": "Billed",
    "format": "boolean"
  },
  "country_code": {
    "label": "Country",
    "format": "text"
  },
  "place_id": {
    "label": "Place ID",
    "format": "text"
  },
  "search_string": {
    "label": "Search term",
    "format": "text"
  },
  "rank": {
    "label": "Position in search",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [No Website Leads - Businesses Without a Real Website](https://apify.com/sandy_yclept/no-website-leads.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sandy_yclept/no-website-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/sandy_yclept/no-website-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`).
