Reputation: 7840
I have to show a list of nearby stores, hospitals, cinemas and all according the user's latest location. I have done this thing using Facebook and Google APIs, like this:
How can I achieve the same thing in Foursquare?
Upvotes: 2
Views: 1397
Reputation: 22726
You can do that by following link
http://api.foursquare.com/v1/venues?geolat=yourlatitudevalue&geolong=yourlongitudevalue&q=yourkeyword.
for example restaurant keyword
http://api.foursquare.com/v1/venues?geolat=23.0081171&geolong=72.5234406&q=restaurant
You can find samples for API under following link.
https://developer.foursquare.com/docs/samples.html
Hope it helps.
Upvotes: 2