# Bilibili topic search + full comment threads

**Use case:** 

Bilibili videos on a topic with their comment threads attached, sentiment-tagged. Delta mode returns only what is new, so a daily schedule stays cheap.

## Input

```json
{
  "mode": "search",
  "searchQuery": "人工智能",
  "autoLocalize": true,
  "sortOrder": "totalrank",
  "durationFilter": "any",
  "deltaMode": true,
  "deltaStateKey": "topic-threads",
  "videoUrls": [
    "https://www.bilibili.com/video/BV1bmTb6EEs8"
  ],
  "category": "all",
  "maxResults": 25,
  "includeComments": true,
  "includeDanmaku": false,
  "danmakuSampleSize": 25,
  "maxComments": 100,
  "sortComments": "hot",
  "sentimentAnalysis": false
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "bvid": {
    "label": "BVID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "danmakuCount": {
    "label": "Danmaku",
    "format": "number"
  },
  "coinCount": {
    "label": "Coins",
    "format": "number"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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