# Kwai User Posts API (https://www.socialcrawl.dev/platforms/kwai/user-posts) > Returns a paginated list of public Kwai posts for a user — captions, media URLs, covers, engagement counts, and author info. Forward the returned `cursor` for the next page. Pass either `handle` or `url`. TL;DR: `GET /v1/kwai/user/posts` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `handle` | no | Kwai profile handle (without the @) | | `url` | no | Kwai profile URL | | `cursor` | no | Cursor from the previous response for the next page | | `count` | no | Number of posts to return (max 50) | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/kwai/user/posts" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list a Kwai user's posts with an API? Send a GET request to /v1/kwai/user/posts with either a handle (KwaiBrasilOficial) or a profile URL. SocialCrawl returns the user's video feed — captions, media URLs, cover images, engagement counts, and author info — in one normalized JSON response. ### What fields does the Kwai User Posts API return? Each post includes its caption, video and cover URLs, view/like/comment/share counts, timestamps, and author info — normalized into the unified PostList schema shared with TikTok and Instagram, so the same parsing code handles all three platforms. ### How does pagination work on the Kwai feed? The response includes a cursor. Forward it as the cursor parameter on your next request to get the following page, and use count to control page size (up to 50 posts per call). Repeat until the cursor runs out to archive a full account. ### How much does the Kwai User Posts API cost? Each request costs 1 credit on the standard tier — a 50-post page costs the same as a single-post page, so set count high when archiving. New accounts get 100 free credits with no credit card required. ### Can I use this for brand monitoring in Brazil and LatAm? Yes. Pull a brand's or creator's Kwai feed on a schedule, rank posts by views or likes, and feed the results into the same dashboard you already run for TikTok — the unified schema means zero extra parsing work for the LatAm market. See the full Kwai API: https://www.socialcrawl.dev/platforms/kwai ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to list a Kwai user's videos with the SocialCrawl API - What does the SocialCrawl Kwai User Posts API return?