Social Media
Instagram Followers
List an Instagram user's followers by username or user_id — username, full name, and profile info — with pagination, as JSON.
POST/api/v1/instagram/user/followers
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonusernamestringInstagram username. Provide this or user_id.
Example: nasa
user_idstringNumeric user id. Provide this or username.
countnumberNumber of results per page.
cursorstringPagination cursor from a previous response.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.instagram.user_followers(username="nasa")
print(results)Response
"big_list": false,
"page_size": 50,
"has_more": false,
"should_limit_list_of_followers": true,
"use_clickable_see_more": false,
"show_spam_follow_request_tab": false,
"follow_ranking_token": "5c4e9ab99e4f4ae7a999e56bb3e86231|46849175851|osr",
"status": "ok"
},
"response_time": 1820,
"credits_used": 2,
"credits_remaining": 4718
}