# Scrape Flippa Auctions | Track Live & Upcoming Bids

**Use case:** 

Monitor all active auction listings on Flippa. Extract bid count, asking price, revenue, profit and end date for every open auction. Export to CSV or JSON.

## Input

```json
{
  "mode": "CUSTOM_URLS",
  "startUrls": [
    {
      "url": "https://flippa.com/search?filter%5Bsale_method%5D=auction&filter%5Bstatus%5D=open&search_template=most_relevant"
    }
  ],
  "maxResults": 0,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "listing_url": {
    "label": "Listing URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "property_type": {
    "label": "Property Type",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "monetization": {
    "label": "Monetization",
    "format": "string"
  },
  "price": {
    "label": "Price (USD)",
    "format": "number"
  },
  "price_dropped": {
    "label": "Price Dropped",
    "format": "boolean"
  },
  "price_dropped_percent": {
    "label": "Price Drop %",
    "format": "number"
  },
  "profit_average": {
    "label": "Monthly Net Profit",
    "format": "string"
  },
  "revenue_average": {
    "label": "Monthly Revenue (USD)",
    "format": "number"
  },
  "multiple": {
    "label": "Profit Multiple",
    "format": "number"
  },
  "revenue_multiple": {
    "label": "Revenue Multiple",
    "format": "number"
  },
  "uniques_per_month": {
    "label": "Monthly Unique Visitors",
    "format": "number"
  },
  "annual_organic_traffic": {
    "label": "Annual Organic Traffic",
    "format": "number"
  },
  "authority_score": {
    "label": "Authority Score",
    "format": "number"
  },
  "has_verified_traffic": {
    "label": "Verified Traffic",
    "format": "boolean"
  },
  "has_verified_revenue": {
    "label": "Verified Revenue",
    "format": "boolean"
  },
  "manually_vetted": {
    "label": "Manually Vetted",
    "format": "boolean"
  },
  "managed_by_flippa": {
    "label": "Managed by Flippa",
    "format": "boolean"
  },
  "broker_seller": {
    "label": "Broker Seller",
    "format": "boolean"
  },
  "confidential": {
    "label": "Confidential",
    "format": "boolean"
  },
  "country_name": {
    "label": "Seller Country",
    "format": "string"
  },
  "established_at": {
    "label": "Age (Years)",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "end_at": {
    "label": "Listing End Date",
    "format": "string"
  }
}
```

## About this Actor

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