ScavioScavio
ToolsPricing
Sign InsGet Startedg
Quick StartAPI & SDKsEcosystem

Kuaishou (China)

Kuaishou User Posts API

Pull a Kuaishou (China) creator's top posts — caption, play / like / comment / share / collect counts, duration, publish time, cover image and video URL — page by page, as JSON. Costs 1 credit per page, so this is the cheap way to pull a creator's catalogue (the profile call costs 10). Pagination is cursor-based: send the response's pcursor back as cursor.

POST/api/v1/kuaishou/user/posts

Authorizations

Authorizationstringheaderrequired

Bearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).

Body

application/json
user_idstringrequired

Kuaishou user id, non-empty. Get one from Resolve Share Link or User Search.

Example: 228905802

cursorstring

Opaque pagination cursor. Omit it for the first page, then pass back the pcursor value from the previous response. The response field is called pcursor, not next_cursor. A pcursor of "no_more" means there are no further pages.

Example: 31

Request

from scavio import ScavioClient

client = ScavioClient(api_key="sk_live_your_key")

cursor = None
while True:
    page = client.kuaishou.user_posts(user_id="228905802", cursor=cursor)
    for feed in page["data"].get("feeds", []):
        print(feed["caption"], feed["view_count"], feed["share_info"])
    cursor = page["data"].get("pcursor")          # NOT next_cursor
    if not cursor or cursor == "no_more":
        break

Response

"result": 1,
"pcursor": "31",
"llsid": "2009910158783876017"
},
"response_time": 2944,
"credits_used": 1,
"credits_remaining": 4819
}
PreviousKuaishou ProfileNextKuaishou User Live Status
ScavioScavio

One scraper API for every social, search and ecommerce platform. Built for AI agents.

Product

  • Features
  • Pricing
  • Dashboard
  • Affiliates

Developers

  • Documentation
  • API Reference
  • Quickstart
  • MCP Integration
  • Python SDK

Alternatives

  • Tavily Alternative
  • SerpAPI Alternative
  • Firecrawl Alternative
  • Exa Alternative
  • Serper Alternative
  • Tavily vs Scavio
  • SerpAPI vs Scavio
  • All alternatives
  • Compare Scavio vs alternatives

Search APIs

  • Google Search API
  • Amazon Product API
  • YouTube API
  • Reddit API
  • Walmart Product API
  • TikTok API
  • Instagram API

Tools

  • All Tools

© 2026 Scavio. All rights reserved.

Featured on TAAFT
Terms of ServicePrivacy Policy