# Web agency demo: pitch-ready site for a barbershop lead

**Use case:** 

See exactly what a web agency gets from one Google Maps lead: a complete single-page demo site for a barbershop with its real rating and reviews, a WhatsApp booking button, desktop and mobile screenshots, and a ready-to-send outreach pitch with follow-ups. Run it as is to preview the output, then plug in your own leads or the dataset of any Google Maps scraper.

## Input

```json
{
  "businesses": [
    {
      "name": "Barbería La Estación",
      "category": "Barbería",
      "address": "Av. Triunvirato 4500, Villa Urquiza, CABA",
      "city": "Buenos Aires",
      "country": "AR",
      "phone": "011 4521-0000",
      "rating": 4.9,
      "reviewsCount": 151,
      "reviews": [
        {
          "author": "Martín G.",
          "text": "Excelente atención, siempre salgo conforme.",
          "stars": 5
        },
        {
          "author": "Lucas P.",
          "text": "Puntuales y prolijos. El mejor fade del barrio.",
          "stars": 5
        }
      ],
      "photos": [],
      "hours": [
        {
          "day": "Tuesday",
          "hours": "10:00 to 20:00"
        },
        {
          "day": "Saturday",
          "hours": "10:00 to 18:00"
        }
      ]
    }
  ],
  "includeBusinessesWithWebsite": false,
  "maxBusinesses": 50,
  "language": "auto",
  "agencyName": "Your Agency",
  "takeScreenshots": true,
  "footerCredit": true
}
```

## Output

```json
{
  "screenshotDesktopUrl": {
    "label": "Preview",
    "format": "image"
  },
  "name": {
    "label": "Business",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "demoUrl": {
    "label": "Demo site",
    "format": "link"
  },
  "pitchUrl": {
    "label": "Pitch",
    "format": "link"
  },
  "whatsappLink": {
    "label": "WhatsApp",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Demo Website Generator for Local Businesses](https://apify.com/sebastian_elustondo/local-business-demo-site-generator.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sebastian_elustondo/local-business-demo-site-generator.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/sebastian_elustondo/local-business-demo-site-generator.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`).
