JSON response not coming in Angular

I am using angular services to call APIs. Here, I have the stubs, but when I call the stub using $http.get() but instead it is showing Meteor generated HTML.

$http.get(“data/userByApartment.json”)
.success(function(res){
console.log(res);
});

Yeah, problem solved. I misplaced the json file in client folder. All stubs/json should be in public folder.