> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeus.agentspro.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# 获取知识库详情

> 获取知识库详情

<ParamField header="Authorization" type="string" required>
  Bearer JWT Token
</ParamField>

<ParamField path="id" type="string" required>
  知识库 ID
</ParamField>

<ResponseField name="id" type="string">
  知识库唯一标识
</ResponseField>

<ResponseField name="name" type="string">
  知识库名称
</ResponseField>

<ResponseField name="description" type="string">
  知识库描述
</ResponseField>

<ResponseField name="status" type="string">
  知识库状态
</ResponseField>

<ResponseField name="documentCount" type="number">
  文档数量
</ResponseField>

<ResponseField name="createdAt" type="string">
  创建时间（ISO 8601）
</ResponseField>

<ResponseField name="updatedAt" type="string">
  更新时间（ISO 8601）
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url https://zeus-api.agentspro.cn/api/knowledge-base/kb_abc123 \
    --header 'Authorization: Bearer <token>'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "kb_abc123",
    "name": "产品文档",
    "description": "产品使用手册和 API 文档",
    "status": "active",
    "documentCount": 12,
    "createdAt": "2025-06-01T10:00:00Z",
    "updatedAt": "2025-06-15T14:30:00Z"
  }
  ```
</ResponseExample>
