# Bilibili music video search

**Use case:** 

Search public Bilibili music videos and export structured metadata for artists, titles, tags, popularity, and engagement.

## Input

```json
{
  "keywords": [
    "音乐现场",
    "翻唱"
  ],
  "bvids": [],
  "maxItems": 6,
  "sort": "totalrank",
  "maxPagesPerKeyword": 1,
  "includeDetails": true,
  "requestDelayMillis": 700
}
```

## Output

```json
{
  "keyword": {
    "label": "Keyword",
    "format": "string"
  },
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "bvid": {
    "label": "BVID",
    "format": "string"
  },
  "url": {
    "label": "Video URL",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published",
    "format": "string"
  },
  "viewCount": {
    "label": "Views",
    "format": "integer"
  },
  "danmakuCount": {
    "label": "Danmaku",
    "format": "integer"
  },
  "likeCount": {
    "label": "Likes",
    "format": "integer"
  },
  "favoriteCount": {
    "label": "Favorites",
    "format": "integer"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "integer"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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