# Bilibili Social Listening Workflow

**Use case:** 

Collect Bilibili search results and comment samples for brand, creator, game, or product social listening workflows.

## Input

```json
{
  "videoUrls": [
    {
      "url": "https://www.bilibili.com/video/BV1xx411c7mD"
    }
  ],
  "searchQueries": [
    "Genshin Impact",
    "gaming laptop"
  ],
  "maxResults": 75,
  "includeComments": true,
  "maxCommentsPerVideo": 3
}
```

## Output

```json
{
  "sourceType": {
    "label": "Source type",
    "format": "text"
  },
  "searchKeyword": {
    "label": "Search keyword",
    "format": "text"
  },
  "bvid": {
    "label": "BV ID",
    "format": "text"
  },
  "aid": {
    "label": "AV ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "creatorName": {
    "label": "Creator",
    "format": "text"
  },
  "creatorId": {
    "label": "Creator ID",
    "format": "text"
  },
  "createdAt": {
    "label": "Published",
    "format": "date"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "coinCount": {
    "label": "Coins",
    "format": "number"
  },
  "favoriteCount": {
    "label": "Favorites",
    "format": "number"
  },
  "shareCount": {
    "label": "Shares",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "danmakuCount": {
    "label": "Danmaku",
    "format": "number"
  },
  "categoryName": {
    "label": "Category",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "coverUrl": {
    "label": "Cover",
    "format": "image"
  },
  "pageUrl": {
    "label": "Video URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "comments": {
    "label": "Comments",
    "format": "text"
  }
}
```

## About this Actor

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