Platform · Social
Kwai
Profiles and videos.
- Endpoints
- 3
- Base price
- 1 cr
- Source
- Provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/kwai/profile | Profile | 1 |
| GET /v1/kwai/posts | Post[] | 1 |
| GET /v1/kwai/post | Post | 1 |
Core
Profile
1 creditGet a public profile by handle.
| handle | required | Username without the @. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/kwai/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=kwai"Posts
1 creditList a profile's recent posts.
| handle | required | Username without the @. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/kwai/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=kwai"Post
1 creditGet a single post by id.
| id | required | The post id on that platform. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/kwai/post \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.