LobeChat
Ctrl K
Back to Discovery
bilibili

Bilibili

@LobeHub
Plongez dans le vaste contenu de Bilibili avec des fonctionnalités telles que la recherche de vidéos par mot-clé, l'accès aux rediffusions, le danmaku interactif, les recommandations de vidéos tendance et les insights des recherches populaires, le tout à portée de main.

Tool Parameters

banner
Search videos by keywords
ParameterType
keywords
STRING

JSON Schema

json
[
  {
    "url": "https://bilibili.chat-plugin.lobehub.com/api/search",
    "name": "searchVideo",
    "description": "Search videos by keywords",
    "parameters": {
      "properties": {
        "keywords": {
          "description": "video keywords",
          "type": "string"
        }
      },
      "required": [
        "keywords"
      ],
      "type": "object"
    }
  },
  {
    "url": "https://bilibili.chat-plugin.lobehub.com/api/replay",
    "name": "videoReplay",
    "description": "get video replay by video avid",
    "parameters": {
      "properties": {
        "avid": {
          "description": "video avid ( Starting with 'av' or 'BV'), e.g. av662384801 or BV1TP411b7pN",
          "type": "string"
        }
      },
      "required": [
        "avid"
      ],
      "type": "object"
    }
  },
  {
    "url": "https://bilibili.chat-plugin.lobehub.com/api/danmaku",
    "name": "videoDanmaku",
    "description": "get video danmaku by video avid",
    "parameters": {
      "properties": {
        "avid": {
          "description": "video avid ( Starting with 'av' or 'BV'), e.g. av662384801 or BV1TP411b7pN",
          "type": "string"
        }
      },
      "required": [
        "avid"
      ],
      "type": "object"
    }
  },
  {
    "url": "https://bilibili.chat-plugin.lobehub.com/api/popular",
    "name": "popularVideo",
    "description": "get global popular videos from bilibili with no keywords",
    "parameters": {
      "properties": {},
      "type": "object"
    }
  },
  {
    "url": "https://bilibili.chat-plugin.lobehub.com/api/hot-search",
    "name": "hotSearch",
    "description": "get hot-search keywords from bilibili, return top 10 keywords",
    "parameters": {
      "properties": {},
      "type": "object"
    }
  }
]