# Kwai Profile API (https://www.socialcrawl.dev/platforms/kwai/profile) > Returns public profile data for a Kwai user — username, bio, avatar, verification status, and follower/following/like/post counts. Pass either `handle` or `url`. TL;DR: `GET /v1/kwai/profile` 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 | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/kwai/profile" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get Kwai profile data with an API? Send a GET request to /v1/kwai/profile with the handle parameter — for example KwaiBrasilOficial, without the @ — or pass the full profile URL instead. SocialCrawl returns username, bio, avatar, verification status, and follower/following/like/post counts in one JSON payload. ### What fields does the Kwai Profile API return? The response includes the handle, display name, bio, avatar URL, verification status, followersCount, followingCount, likeCount, and postCount — normalized into the unified Author schema shared with TikTok, Instagram, and the other SocialCrawl platforms. ### Can I pass a profile URL instead of a handle? Yes. The endpoint accepts either handle or url — pass exactly one of them. URLs are handy when you harvest profile links from Kwai search or share sheets and don't want to parse the handle out yourself. ### How much does the Kwai Profile API cost? Each request costs 1 credit on the standard tier. New accounts get 100 free credits with no credit card required, so you can validate the full response shape against real Brazilian creator handles first. ### Can I track Kwai follower growth for LatAm creators? Yes. Poll /v1/kwai/profile on a schedule and store followersCount and likeCount over time to build growth charts for Brazilian and Latin American creators — the audience most influencer platforms miss because their coverage stops at TikTok and Instagram. 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 fetch a Kwai profile with the SocialCrawl API - What does the SocialCrawl Kwai Profile API return?