flippa_comparable_sales
Analyze Flippa business listings by finding comparable sales data for valuation. Use a specific listing ID or property type to generate price ranges, averages, and market comparisons.
Instructions
Find comparable listings on Flippa for valuation comparison.
If a listing_id is provided, fetches that listing first and uses its property_type and revenue range (0.5x-2x) to find similar listings. You can also search by property_type directly.
Args:
listing_id: Find comparables for this listing. Optional.
property_type: Filter by type. Overrides the target listing's type if both provided. Optional.
page_size: Number of comparables to return, 1-20 (default 10)
response_format: "markdown" (default) or "json"
Returns: Target listing (if listing_id provided), list of comparable listings, average price, median price, average revenue multiple, and price range.
Examples:
Comps for a listing: { "listing_id": "12299903" }
SaaS comparables: { "property_type": "saas", "page_size": 15 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| listing_id | No | Find comparable listings for this listing ID. If provided, the listing's property_type and revenue range are used for matching. | |
| property_type | No | Filter comparables by property type. If listing_id is provided, this overrides the listing's type. | |
| page_size | No | Number of comparable listings to return (1-20, default 10) | |
| response_format | No | Response format: 'markdown' for human-readable or 'json' for structured data | markdown |