Using Foursquare api "Venue" service.. i am parsing nearByVenue details like shop, restaurant etc.

Suppose as an example i am getting following link:

https://api.foursquare.com/v1/venues.json?geolat=40.562362&geolong=-111.938689

Issue is I am getting only 10 nearbyDetails.. suppose I am standing in New York there should be number of venue details.. why I am getting only 10 details only ?

Is there any other service or i am following wrong approach to use it?

Thanks

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Add l=n where n is your limit in query string. The default limit is set to 30.

https://api.foursquare.com/v1/venues.json?geolat=40.562362&geolong=-111.938689&l=10
link|improve this answer
you know of a way to sort them by importance or other features? like if i want to get only grocery stores. also pagination... thanks! – Tobias Jul 11 '11 at 4:05
feedback

https://api.foursquare.com/v1/venues.xml?geolat=40.562362&geolong=-111.938689&l=50&q=coffee

You can change the value of l="no of result" parameter.

And also if you want to search for particular keyword like ATM, Coffee then you can add the parameter q and add it's value like q="atm", q="coffee", etc.

hope it will be helpful to you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.