get-bilibili-rank
Retrieve Bilibili video rankings across categories like animation, music, gaming, and more to analyze trending content and youth consumption patterns.
Instructions
获取哔哩哔哩视频排行榜,包含全站、动画、音乐、游戏等多个分区的热门视频,反映当下年轻人的内容消费趋势
Input Schema
Name | Required | Description | Default |
---|---|---|---|
type | No | 排行榜分区 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"type": {
"anyOf": [
{
"const": 0,
"description": "全站",
"type": "number"
},
{
"const": 1,
"description": "动画",
"type": "number"
},
{
"const": 3,
"description": "音乐",
"type": "number"
},
{
"const": 4,
"description": "游戏",
"type": "number"
},
{
"const": 5,
"description": "娱乐",
"type": "number"
},
{
"const": 188,
"description": "科技",
"type": "number"
},
{
"const": 119,
"description": "鬼畜",
"type": "number"
},
{
"const": 129,
"description": "舞蹈",
"type": "number"
},
{
"const": 155,
"description": "时尚",
"type": "number"
},
{
"const": 160,
"description": "生活",
"type": "number"
},
{
"const": 168,
"description": "国创相关",
"type": "number"
},
{
"const": 181,
"description": "影视",
"type": "number"
}
],
"default": 0,
"description": "排行榜分区"
}
},
"type": "object"
}