# Scrape Bilibili Graduate Exam Videos

**Use case:** 

Scrape Bilibili (哔哩哔哩) graduate-exam (考研) videos - views, likes, coins, danmaku, comments & creators. Export to JSON, CSV or Excel.

## Input

```json
{
  "operation": "search_videos",
  "keywords": [
    "考研"
  ],
  "maxItems": 100,
  "searchOrder": "comprehensive",
  "commentSort": "hot"
}
```

## Output

```json
{
  "record_type": {
    "label": "Record type",
    "format": "string"
  },
  "video_url": {
    "label": "Video URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "author_name": {
    "label": "Creator",
    "format": "string"
  },
  "play_count": {
    "label": "Views",
    "format": "integer"
  },
  "danmaku_count": {
    "label": "Danmaku",
    "format": "integer"
  },
  "like_count": {
    "label": "Likes",
    "format": "integer"
  },
  "reply_count": {
    "label": "Comments",
    "format": "integer"
  },
  "duration_seconds": {
    "label": "Duration (s)",
    "format": "integer"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "create_time": {
    "label": "Published (ISO)",
    "format": "string"
  },
  "input": {
    "label": "Input",
    "format": "string"
  }
}
```

## About this Actor

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