This is part of the JSON i get from foursquare.
JSON
tips: { count: 2, groups: [ { type: \"others\", na
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); }); });