# BizBuySell Business Listings Data Extractor

**Use case:** 

Extract business-for-sale listings from BizBuySell. Capture details like pricing, cash flow, and broker information for market research.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.bizbuysell.com/businesses-for-sale/"
    }
  ],
  "keyword": "restaurant",
  "location": "california",
  "results_wanted": 100,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "listing_id": {
    "label": "Listing ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "state_code": {
    "label": "State",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "cash_flow": {
    "label": "Cash Flow",
    "format": "number"
  },
  "ebitda": {
    "label": "EBITDA",
    "format": "number"
  },
  "broker_name": {
    "label": "Broker",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "fetched_at": {
    "label": "Fetched At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [BizBuySell Scraper](https://apify.com/shahidirfan/bizbuysell-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/bizbuysell-scraper) to learn more, explore other use cases, and run it yourself.