This is part of the JSON i get from foursquare.
JSON
tips: { count: 2, groups: [ { type: \"others\", na
try this
$.getJSON(url, function(data){ $.each(data.response.venue.tips.groups.items, function (index, value) { console.log(this.text); }); });