Ankit Sachan
Ankit Sachan

Reputation: 7840

get list of places from Foursquare like Facebook places and Google places

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

Answers (2)

Janak Nirmal
Janak Nirmal

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

Related Questions