[Solved] Which api I use to get Best Near By venues from foursquare [closed]


You can search the venues near by you using the below Rest API..

https://api.foursquare.com/v2/venues/search?client_id=CLIENT_ID&client_secret=CLIENT_SECRET&v=20140730&locale=en&radius=1000&ll=LAT,LNG&limit=20&query=royal&categoryId=COMMA_SEPERATED_IDS

For more details, you can refer the link below:

https://developer.foursquare.com/docs/venues/search

Also to fetch the specific category from the four square for COMMA_SEPERATED_IDS, you can get it from the below link:

https://developer.foursquare.com/docs/venues/categories

To create client id and client secret, follow below link:

https://developer.foursquare.com/overview/auth

Hope it will help you..!!!

solved Which api I use to get Best Near By venues from foursquare [closed]