try
obj.data[0].stars // Will get you the stars in the 1st Object
obj.data[0].stars[0] // Gary Elwes
FIDDLE
To iterate thru the Stars object You can try this
$.each(obj.data , function(key , value){ // First Level
$.each(value.stars , function(k , v ){ // The contents inside stars
console.log(v)
});
});
UPDATED FIDDLE
EDIT
$.ajax({
// Parameters
success : function(obj){
$.each(obj.data , function(key , value){ // First Level
$.each(value.stars , function(k , v ){ // The contents inside stars
console.log(v)
});
});
}
});