flippa_search_listings
Search and filter Flippa marketplace listings by property type, status, sale method, and sort order to find online businesses for acquisition.
Instructions
Search and browse listings on the Flippa marketplace.
Args:
property_type: Filter by type (website, saas, ecommerce_store, fba, ios_app, android_app, ai_apps_and_tools, youtube, newsletter, service, other)
status: Filter by status (open, closed, ended). Default: "open"
sale_method: Filter by sale method (auction, classified)
sort_alias: Sort by (lowest_price, highest_price, most_active, most_recent, ending_soonest, most_profitable, most_relevant)
page_number: Page number (default 1)
page_size: Results per page, 1-100 (default 30)
response_format: "markdown" (default) or "json"
Returns: Paginated list of Flippa listings with price, revenue, profit, bid count, and verification status. Includes pagination metadata with has_more flag.
Examples:
Search all open SaaS listings: { "property_type": "saas" }
Most profitable websites: { "property_type": "website", "sort_alias": "most_profitable" }
Ending soon auctions: { "sale_method": "auction", "sort_alias": "ending_soonest" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| property_type | No | Filter by property/business type (e.g., 'saas', 'website', 'ecommerce_store') | |
| status | No | Filter by listing status: 'open' (active), 'closed' (sold), or 'ended' (expired) | open |
| sale_method | No | Filter by sale method: 'auction' or 'classified' (fixed price) | |
| sort_alias | No | Sort order for results (e.g., 'most_recent', 'highest_price', 'most_profitable') | |
| page_number | No | Page number for pagination, starting at 1 | |
| page_size | No | Number of results per page (1-100, default 30) | |
| response_format | No | Response format: 'markdown' for human-readable or 'json' for structured data | markdown |