Надеюсь, вы получили результаты в data.d.results.
var results=data.d.results;
displayObjectProperty("getData",results,"Title");
function displayObjectProperty(id,object,Property){
for(var x in object)
{
if(typeof(object[x]) == "object"){displayObjectProperty(id,object[x],Property)}else{
if(x==Property){
document.getElementById(id).innerHTML += "<b>" + x + "</b>"+"::<i>" + object[x] + "</i>";
}
}
}
}