Instagram API, popular Hashtag

Is it possible to have a filter for a specific hashtag in the instagram API for media/popular

?
Will also work (if possible): /tags/tag-name/media/recent

sorted by liked

Their documentation doesn't state that this is possible, but I was wondering if this is the easiest way to do it ...

+3


source to share


2 answers


Instagram doesn't provide any filter for media / recent, but they do provide number of likes. You can save them to the database and sort them. Remember you need to update your database to like it will be updated.



+3


source


You cannot get the most popular tags using the API. The end point media/popular

simply gives you moving images at that moment. /tags/tag-name/media/recent

only returns the media for one tag.



+1


source







All Articles