Social Media
Instagram Hashtag Search
Search Instagram hashtags by keyword — name and media count — as JSON.
POST/api/v1/instagram/search/hashtags
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_hashtags(keyword="fashion")
print(results)Response
"count": 20,
"rank_token": null,
"_backend": "igrapi"
},
"response_time": 4677,
"credits_used": 2,
"credits_remaining": 4720
}