JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-controller="Ctrl">
</div>
JavaScript
var Ctrl = function( $scope , $http ){
var url = 'https://routingnumbers.herokuapp.com/api/data.json?rn=071000013&callback=JSON_CALLBACK';
$http.jsonp(url).
success(function (data) {
console.log('Success', data);
}).
error(function (data) {
console.log('Error', data);
});
}