-
Hello, I know I asked much but I hope this will be my last :). I am trying to fetch all followings of a user (not the logged one) but It only returns 600. The user I want to fetch followings has 950 following. I am using
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 13 replies
-
Hey @emreond, It's either because Instagram rate limited your account (as you're making too many requests), or simply because you're expecting a different number (based on the counter you can see) when 600 it's actually the correct amount. If that's not the case, and for instance you're trying to paginate some A-list celebrity account, than rate limiting is at place: the Private API are used for displaying content driven by user interaction. As it is unlikely for a user to scroll even just 10 pages of a followers list, and it's extremely valuable data, followers/following endpoints are among the most limited ones. |
Beta Was this translation helpful? Give feedback.
Hey @emreond,
It's either because Instagram rate limited your account (as you're making too many requests), or simply because you're expecting a different number (based on the counter you can see) when 600 it's actually the correct amount.
Actual counters are not immediately updated every time an account is deactivated or suspended, and of course followers/following will not display users who blocked you, etc. This means that for an account with a counter of ~700 followers, you can expect ~600 "real" ones.
If that's not the case, and for instance you're trying to paginate some A-list celebrity account, than rate limiting is at place: the Private API are used for displaying content driven …