# Daily Weibo Trending Topics Monitor — only what changed

**Use case:** 

Track Weibo's hot-search board on a schedule. Delta mode returns only what changed each run — new, rising & dropped topics, not a full re-pull.

## Input

```json
{
  "mode": "hot_search_delta",
  "searchQuery": "人工智能",
  "autoLocalize": true,
  "maxResults": 50,
  "maxComments": 20,
  "sentimentAnalysis": false,
  "deltaStateKey": "default"
}
```

## Output

```json
{
  "snapshotAt": {
    "label": "Snapshot",
    "format": "date"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "title": {
    "label": "Topic",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "rankDelta": {
    "label": "Rank change",
    "format": "number"
  },
  "hotValue": {
    "label": "Hot Value",
    "format": "number"
  },
  "hotValueDelta": {
    "label": "Hot change",
    "format": "number"
  },
  "previousRank": {
    "label": "Prev Rank",
    "format": "number"
  },
  "minutesOnBoard": {
    "label": "Mins On Board",
    "format": "number"
  },
  "peakRank": {
    "label": "Peak Rank",
    "format": "number"
  },
  "peakHotValue": {
    "label": "Peak Hot",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Weibo Scraper - Chinese Social Intelligence](https://apify.com/zhorex/weibo-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zhorex/weibo-scraper) to learn more, explore other use cases, and run it yourself.