# BizQuest Business-for-Sale Scraper extractor for one source

**Use case:** 

Extract a bounded California BizQuest search page into typed business-for-sale records ready for spreadsheets, CRM imports, or analysis.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.bizquest.com/businesses-for-sale-in-california/"
    }
  ],
  "location": "California",
  "includeDetails": false,
  "maxItems": 5,
  "maxSearchPages": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "groups": [
      "RESIDENTIAL"
    ],
    "countryCode": "US"
  }
}
```

## Output

```json
{
  "businessId": {
    "label": "Business ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "askingPrice": {
    "label": "Asking price",
    "format": "number"
  },
  "cashFlow": {
    "label": "Cash flow / SDE",
    "format": "number"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "industry": {
    "label": "Industry",
    "format": "string"
  },
  "listingUrl": {
    "label": "Listing",
    "format": "string"
  },
  "brokerName": {
    "label": "Broker",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [BizQuest Business-for-Sale Scraper](https://apify.com/automation-lab/bizquest-business-for-sale-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/bizquest-business-for-sale-scraper) to learn more, explore other use cases, and run it yourself.