SyntaxFix
Write A Post
Hire A Developer
Questions
You're not looping over the items. Try this instead:
$.getJSON(url, function(data){ $.each(data.response.venue.tips.groups.items, function (index, value) { console.log(this.text); }); });