# SocialCrawl API — kwai endpoints # Base URL: https://www.socialcrawl.dev # Auth: x-api-key header # Full docs: https://www.socialcrawl.dev/docs/kwai ## GET /v1/kwai/profile Get a Kwai user profile Credit cost: 1 (standard) Parameters: - handle (optional, string) — Kwai profile handle (without the @) - url (optional, string) — Kwai profile URL - Constraint: one of handle, url (at least one required) curl "https://www.socialcrawl.dev/v1/kwai/profile" \ -H "x-api-key: sc_your_api_key_here" ## GET /v1/kwai/user/posts List a Kwai user's posts Credit cost: 1 (standard) Parameters: - handle (optional, string) — Kwai profile handle (without the @) - url (optional, string) — Kwai profile URL - cursor (optional, string) — Cursor from the previous response for the next page - count (optional, integer) — Number of posts to return (max 50) - Constraint: one of handle, url (at least one required) curl "https://www.socialcrawl.dev/v1/kwai/user/posts" \ -H "x-api-key: sc_your_api_key_here" ## GET /v1/kwai/post Get a Kwai post Credit cost: 1 (standard) Parameters: - url (optional, string) — Full URL of the Kwai post curl "https://www.socialcrawl.dev/v1/kwai/post" \ -H "x-api-key: sc_your_api_key_here"