Check out this accessible JSON formatted URL:
Here's the code snippet I used to store the JSON data in a variable:
var url = "http://api.geosvc.com/rest/US/84606/nearby?apikey=4ff687893a7b468cb520b3c4e967c4da&d=20&pt=PostalCode&format=json&callback=JSON_CALLBACK";
$http.jsonp(url)
.success(function(data){
console.debug(data);
})
.error(function(data){
console.debug('error');
console.debug(data);
});
When running the code, it jumps directly to the error function with an undefined error message. Can't seem to figure out what's causing this issue.