Social Media
Instagram User Search
Search Instagram users by keyword — username, full name, follower count, and verification — as JSON.
POST/api/v1/instagram/search/users
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/jsonkeywordstringrequiredSearch keyword.
Example: fashion
cursorstringRank token from a previous response.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.instagram.search_users(keyword="fashion")
print(results)Response
"count": 29,
"rank_token": null,
"_backend": "igrapi"
},
"response_time": 6414,
"credits_used": 2,
"credits_remaining": 4722
}