# iQiyi Movie Search Scraper

**Use case:** 

Scrape iQiyi movie search results with titles, thumbnails, categories, scores, tags, and URLs.

## Input

```json
{
  "searchTerms": [
    "电影"
  ],
  "startUrls": [
    {
      "url": "https://www.iqiyi.com/so/q_%E7%94%B5%E5%BD%B1"
    }
  ],
  "contentTypes": [
    "album",
    "shortVideo"
  ],
  "maxItems": 50,
  "pageSize": 25
}
```

## Output

```json
{
  "searchTerm": {
    "label": "Search term"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Video URL",
    "format": "link"
  },
  "contentType": {
    "label": "Type"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "channel": {
    "label": "Channel"
  },
  "uploader": {
    "label": "Uploader"
  },
  "publishDate": {
    "label": "Publish date"
  },
  "uploadTime": {
    "label": "Upload time"
  },
  "durationSeconds": {
    "label": "Duration (s)"
  },
  "year": {
    "label": "Year"
  },
  "score": {
    "label": "Score"
  },
  "tags": {
    "label": "Tags"
  },
  "playCount": {
    "label": "Play count"
  },
  "qipuId": {
    "label": "Qipu ID"
  },
  "isVip": {
    "label": "VIP"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [iQiyi Video Scraper](https://apify.com/automation-lab/iqiyi-video-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/iqiyi-video-scraper) to learn more, explore other use cases, and run it yourself.