Kuaishou (China)
Kuaishou Profile API
Full profile for a Kuaishou (China) creator by user id — display name, bio, avatar, gender, IP-location province, and the follower / video / lifetime-like counters — as JSON. Costs 10 credits: this is the dearest single-object call on the platform, and Kuaishou is priced per endpoint (1, 2, 10 or 40), never per platform. This is kuaishou.com only; Kwai international (kwai.com) is not served.
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/jsonuser_idstringrequiredKuaishou user id, non-empty. Both id forms work on this endpoint: the numeric form (5518803932) and the alphanumeric form (3xcuu5habgc8z29). If you only have a share link, call Resolve Share Link first — it costs 1 credit and returns the id.
Example: 5518803932
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
# 10 credits. Resolve a share link first (1 credit) rather than guessing ids.
profile = client.kuaishou.profile(user_id="5518803932")
counts = profile["data"]["userProfile"]["ownerCount"]
print(counts["fan"], counts["photo"], counts["total_photo_like"])Response