angular-viacep 
ViaCEP AngularJS directive and service
See demo here
How to install:
$3
bower install angular-viacep --save
$3
$3
#### Just see
demo$3
angular.module('app', ['angular.viacep'])
angular.module('app').controller('ctrl', function ctrl($scope, viaCep) {
viaCep.get('08465-312').then(function(response){
$scope.address = response
});
});