# BizBuySell US business listings scraper

**Use case:** 

Scrape public US BizBuySell business listings, asking prices, locations, descriptions, images, and listing URLs into a structured dataset.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.bizbuysell.com/businesses-for-sale/"
    }
  ],
  "maxItems": 25,
  "maxPagesPerUrl": 1,
  "enrichDetails": false,
  "includeBrokerContacts": false,
  "requestDelayMillis": 500
}
```

## Output

```json
{
  "productId": {
    "label": "Listing ID"
  },
  "title": {
    "label": "Title"
  },
  "location": {
    "label": "Location"
  },
  "askingPriceNumeric": {
    "label": "Asking price",
    "format": "number"
  },
  "cashFlowNumeric": {
    "label": "Cash flow",
    "format": "number"
  },
  "grossRevenueNumeric": {
    "label": "Gross revenue",
    "format": "number"
  },
  "ebitdaNumeric": {
    "label": "EBITDA",
    "format": "number"
  },
  "url": {
    "label": "Listing",
    "format": "link"
  },
  "brokerName": {
    "label": "Broker"
  },
  "searchUrl": {
    "label": "Search",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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