Douyin
Douyin User Followers API
A user's followers. Costs 1 credit per request.
POST/api/v1/douyin/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/jsonsec_user_idstringrequiredThe user's sec_user_id, the stable id Douyin uses internally.
max_timestringPagination timestamp from a previous response
countintegerItems to return per page. 1-50.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.douyin.request("/api/v1/douyin/user/followers", {"sec_user_id": "..."})
print(result)Response
"max_time": "1787429453",
"has_more": true
},
"response_time": 1045
}