# Flippa SaaS Website Listings Scraper

**Use case:** 

Scrape active Flippa website listings for SaaS acquisition research with asking prices, revenue, profit, traffic, industry, and listing URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://flippa.com/search?filter%5Bproperty_type%5D=website"
    }
  ],
  "propertyTypes": [
    "website",
    "saas"
  ],
  "keywords": [
    "saas"
  ],
  "industries": [],
  "status": "open",
  "saleMethods": [],
  "maxItems": 50,
  "pageSize": 50
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "propertyName": {
    "label": "Property name",
    "format": "text"
  },
  "propertyType": {
    "label": "Property type",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "currentPrice": {
    "label": "Current price",
    "format": "number"
  },
  "displayPrice": {
    "label": "Display price",
    "format": "number"
  },
  "revenuePerMonth": {
    "label": "Monthly revenue",
    "format": "number"
  },
  "profitPerMonth": {
    "label": "Monthly profit",
    "format": "number"
  },
  "pageViewsPerMonth": {
    "label": "Page views/mo",
    "format": "number"
  },
  "uniquesPerMonth": {
    "label": "Uniques/mo",
    "format": "number"
  },
  "sellerLocation": {
    "label": "Seller location",
    "format": "text"
  },
  "saleMethod": {
    "label": "Sale method",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "hasVerifiedRevenue": {
    "label": "Verified revenue",
    "format": "boolean"
  },
  "hasVerifiedTraffic": {
    "label": "Verified traffic",
    "format": "boolean"
  },
  "endsAt": {
    "label": "Ends at",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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