agentofuser
agentofuser

Reputation: 9327

How do I get the most checked-into venues in a given city using the foursquare API?

The search API gives me a list of venues in the city but with no apparent order in terms of usersCount or checkinsCount. Some have a dozen, some have thousands. Is there a way to get them sorted by either of those counts?

Upvotes: 1

Views: 313

Answers (1)

akdotcom
akdotcom

Reputation: 4687

There's no way to explicitly search/sort by total check-ins or total user count.

The best alternatives are to rely on /venues/trending which uses realtime popularity or on /venues/search with intent=browse to get the "most significant" venues in an area.

Upvotes: 1

Related Questions