Angular: Empty Fiddle

http://angularjs.org/

HTML

<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<div ng-controller="MyCtrl">
 <h1>
   {{textvalues.result.event.description}}
 </h1>
 </h1>
</div>

JavaScript

var myApp = angular.module('myApp', []);

function MyCtrl($scope,$http) {
    
    $http.get('http://www.vizgr.org/historical-events/search.php?', {params: {format: 'json', query:'India', limit:'3'}}).then(function(response) {
            $scope.textvalues = response.data;
            console.log(JSON.stringify($scope.textvalues));
        });

}