# Analyze Domain Investment Opportunities Under $5k

**Use case:** 

Extract data on domain names listed for sale under a specific price point to identify potential investment opportunities. This helps domain investors quickly fi

## Input

```json
{
  "searchUrl": "https://flippa.com/search?filter%5Bproperty_type%5D%5B%5D=ecommerce_store&filter%5Bstatus%5D=open",
  "maxItems": 150,
  "propertyType": [
    "domain"
  ],
  "status": "open",
  "priceMax": 5000,
  "verifiedRevenue": false,
  "verifiedTraffic": false,
  "sort": "-created_at"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "property_type": {
    "label": "Type",
    "format": "string"
  },
  "price": {
    "label": "Price (USD)",
    "format": "integer"
  },
  "revenue_per_month": {
    "label": "Monthly Revenue",
    "format": "integer"
  },
  "profit_per_month": {
    "label": "Monthly Profit",
    "format": "integer"
  },
  "url": {
    "label": "Listing",
    "format": "string"
  }
}
```

## About this Actor

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