Weibo Similar Search API
Related search terms and accounts for a keyword. Costs 1 credit per request.
POST/api/v1/weibo/search/similar
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. Max 200 characters.
Example: #微博奇遇记#
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.weibo.request("/api/v1/weibo/search/similar", {"keyword": "#微博奇遇记#"})
print(result)Response
"users": []
},
"response_time": 970
}