looks like your call to the kimono API is alright. but you have a typo in your angular controller definition:
.controller('maritimCtrl', ['$scope','$http', functio($scope, $http){
is missing the n
at the end of function
. should be:
.controller('maritimCtrl', ['$scope','$http', function($scope, $http){