# WeChat AI Article Search Scraper

**Use case:** 

Scrape public Sogou WeChat article search results for AI topics with titles, snippets, account names, dates, images, and links.

## Input

```json
{
  "keywords": [
    "AI",
    "人工智能"
  ],
  "searchUrls": [],
  "maxItems": 100,
  "maxPagesPerQuery": 5,
  "requestDelayMs": 800,
  "resolveArticleUrls": false
}
```

## Output

```json
{
  "keyword": {
    "label": "Keyword"
  },
  "title": {
    "label": "Article title",
    "format": "text"
  },
  "accountName": {
    "label": "Official Account"
  },
  "publishDateText": {
    "label": "Publish date"
  },
  "snippet": {
    "label": "Snippet",
    "format": "text"
  },
  "sogouUrl": {
    "label": "Sogou URL",
    "format": "link"
  },
  "articleUrl": {
    "label": "Article URL",
    "format": "link"
  },
  "coverImageUrl": {
    "label": "Cover image",
    "format": "image"
  },
  "page": {
    "label": "Page"
  },
  "position": {
    "label": "Position"
  },
  "sourceUrl": {
    "label": "Source search URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Sogou WeChat Article Search Scraper](https://apify.com/automation-lab/sogou-wechat-article-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/sogou-wechat-article-search-scraper) to learn more, explore other use cases, and run it yourself.