The Twitter API has the friends_count
and followers_count
available as cached values for the users/show
or account/verify_credentials
method. As far as I can tell, the only way to determine the number of lists a user is a member of is to make a call to GET list memberships and paginate through using the cursor to count the total number of lists a person is a member of. This is sub-optimal; ideally lists_count
would be available on users/show
.
Is there an easier way to determine the raw number of lists a user is a member of using the Twitter API? What did I miss?