---
document_id: agent.collection.task.bilibili_search_videos_v1
schema_version: 2
parent_document_id: agent.querying
section: querying
---

<!-- Generated by scripts.build_agent_guide; do not edit. -->

# Search videos / 搜索视频

Search Bilibili videos by keyword. For one video's full data use bilibili_video_detail_v1; for its comments use bilibili_video_comments_v1.

按关键词搜索 B 站视频。要取某个视频的完整数据用 bilibili_video_detail_v1,要取它的评论用 bilibili_video_comments_v1。

Task / 任务: `bilibili_search_videos_v1`
Platform / 平台: Bilibili / 哔哩哔哩
Billing / 计费: 2 Credits per successful task / 每个成功任务 2 Credits
Estimate / 估价: call `estimate_collection`; start directly when `approval_required=false`, otherwise obtain approval for `upper_bound_credits`.
估价：调用 `estimate_collection`；`approval_required=false` 时直接启动，否则请用户确认 `upper_bound_credits`。

## Inputs / 输入

- `keyword` — Keyword / 关键词; kind=text; required=True; default=''; bounds=min_length=1, max_length=100
- `page` — Page / 页码; kind=integer; required=False; default=1; bounds=min=1, max=50
- `page_size` — Page size / 每页条数; kind=integer; required=False; default=20; bounds=min=1, max=50

## Minimal call / 最小调用

`estimate_collection`

```json
{
  "task_query": "搜索哔哩哔哩上的开箱评测视频",
  "task_code": "bilibili_search_videos_v1",
  "input": {
    "keyword": "开箱评测"
  }
}
```


## Result and pagination / 结果与分页

- mode=none

Only the fields listed below are part of the stable result contract. /
只有下方列出的字段属于稳定结果契约。

## Result fields / 结果字段

- `meta.request_id` — type=string; Asklear request identifier for tracing. / 用于追踪的 Asklear 请求 ID。
- `meta.api_name` — type=string; Executed collection operation name. / 实际执行的采集操作名称。
- `meta.latency_ms` — type=integer; Collection execution latency in milliseconds. / 采集执行耗时（毫秒）。
- `meta.credits_charged` — type=integer; Asklear user-side Credits settled for this task after completion. / 任务完成后 Asklear 用户侧实际结算的 Credits。
- `data` — type=object; Task result object; inspect the returned value because its inner fields may vary. / 任务结果对象；内部字段可能变化，请查看实际返回值。

Use `list_collection_tasks` as the runtime authority, then `describe_collection_task` for one task's full input contract, examples and limits. Collection access is entitlement-gated. /
以 `list_collection_tasks` 返回为运行时准据，再用 `describe_collection_task` 取单个任务的完整入参契约、示例与限制；采集能力受 entitlement 控制。
