# Scrape Kuaishou 快手 Search Results

**Use case:** 

Run this task to extract the latest results for funny videos on Kuaishou. You’ll get a detailed list of videos including IDs, captions, authors, and thumbnails. This specific search focuses on the humor aspect, allowing access to popular content in that genre.

## Input

```json
{
  "startUrls": [
    "https://www.kuaishou.com/profile/1745294435",
    "https://www.kuaishou.com/short-video/3xif8a6s7z9fcz4",
    "https://www.kuaishou.com/hashtag/%E5%96%9C%E7%88%B1%E5%BA%A6%E6%BF%80%E5%8A%B1%E8%AE%A1%E5%88%92",
    "https://www.kuaishou.com/profile/1745294435"
  ],
  "profileSortBy": "latest",
  "searchTerms": [
    "Funny videos"
  ],
  "maxCommentsPerVideo": 0,
  "maxRepliesPerComment": 0,
  "maxItems": 100
}
```

## Output

```json
{
  "thumb": {
    "label": "Thumb"
  },
  "id": {
    "label": "Id"
  },
  "caption": {
    "label": "Caption"
  },
  "createTime": {
    "label": "Create time"
  },
  "createDate": {
    "label": "Create date"
  },
  "url": {
    "label": "Url"
  },
  "authorMeta": {
    "label": "Author meta"
  },
  "musicMeta": {
    "label": "Music meta"
  },
  "duration": {
    "label": "Duration"
  },
  "cover": {
    "label": "Cover"
  },
  "width": {
    "label": "Width"
  },
  "height": {
    "label": "Height"
  },
  "playUrl": {
    "label": "Play url"
  },
  "allPlayUrls": {
    "label": "All play urls"
  },
  "likeCount": {
    "label": "Like count"
  },
  "forwardCount": {
    "label": "Forward count"
  },
  "commentCount": {
    "label": "Comment count"
  },
  "viewCount": {
    "label": "View count"
  },
  "hashtags": {
    "label": "Hashtags"
  },
  "inputUrl": {
    "label": "Input url"
  },
  "searchTerm": {
    "label": "Search term"
  }
}
```

## About this Actor

This example demonstrates how to use [Kuaishou 快手 Scraper (Profile, Search, Videos & Comments)](https://apify.com/natanielsantos/kuaishou-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/natanielsantos/kuaishou-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/natanielsantos/kuaishou-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
