get_video_info
Retrieve detailed metadata for a Bilibili video by specifying its unique BVID, enabling precise access to video information for analysis or integration purposes.
Instructions
Get detailed information about a Bilibili video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bvid | Yes | Bilibili video ID (BVID) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"bvid": {
"description": "Bilibili video ID (BVID)",
"type": "string"
}
},
"required": [
"bvid"
],
"type": "object"
}