I'm creating a little shoutbox with angular JS and StamPlay. Therefore I've created some 'Test Shouts' than can be accesed via an URL
In my Angular app I've created a Service to fetch the data:
app.factory('shouts', ['$http', function ($http) {
    return $http.get('https://shoutbox.stamplayapp.com/api/cobject/v1/shouts').success(function (data) {
        return data.data;
    });
}]);
Inside my MainController I attach the data to the $scope.
app.controller('HomeController', [
    '$scope',
    'shouts',
    function ($scope, shouts) {
        $scope.shouts = shouts;
    }
]);
But when I'm tyring to ng-repeat through the data[], i can't access the objects inside. I don't understand whats the problem.
<div ng-repeat="shout in shouts">
  {{shout.title}}
</div>