Let’s try to get poular tweets from list https://twitter.com/ariherzog/lists/influencers
We can search popular tweets from list through browser:
https://twitter.com/search?q=list%3Aariherzog%2Finfluencers&result_type=popular
As described here https://dev.twitter.com/rest/public/search we can use query from URL to make an API request
The best way to build a query and test if it’s valid and will return matched Tweets is to first try it at twitter.com/search. As you get a satisfactory result set, the URL loaded in the browser will contain the proper query syntax that can be reused in the API endpoint.
So we have such request:
https://api.twitter.com/1.1/search/tweets.json?q=list%3Aariherzog%2Finfluencers&result_type=popular
We can test request using API Console (https://dev.twitter.com/rest/tools/console)
Twitter API returns wrong tweets, as I guess - popular tweets from all around the world.
Is there are some restrictions on this, is this a bug or I’m missed something? Maybe you know another way of getting popular tweets from list (in window restricted by max_id and since_id)