diff --git a/redfin/redfin.py b/redfin/redfin.py index 4da27e9..ef8f495 100644 --- a/redfin/redfin.py +++ b/redfin/redfin.py @@ -101,6 +101,9 @@ def activity(self, property_id, listing_id, **kwargs): def customer_conversion_info_off_market(self, property_id, listing_id, **kwargs): return self.meta_property('customerConversionInfo/offMarket', {'propertyId': property_id, 'listingId': listing_id, **kwargs}, page=True) + def customer_conversion_info_on_market(self, property_id, listing_id, **kwargs): + return self.meta_property('customerConversionInfo/onMarket', {'propertyId': property_id, 'listingId': listing_id, **kwargs}, page=True) + def rental_estimate(self, property_id, listing_id, **kwargs): return self.meta_property('rental-estimate', {'propertyId': property_id, 'listingId': listing_id, **kwargs})