GET
/
llm-application
/
open
/
knowledge
获取个人知识库列表
curl --request GET \
  --url https://open.bigmodel.cn/api/llm-application/open/knowledge \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "list": [
      {
        "id": "<string>",
        "embedding_id": 123,
        "name": "<string>",
        "description": "<string>",
        "background": "<string>",
        "icon": "<string>",
        "document_size": 123,
        "length": 123,
        "word_num": 123
      }
    ],
    "total": 123
  },
  "code": 123,
  "message": "<string>",
  "timestamp": 123
}

Authorizations

Authorization
string
header
required

使用以下格式进行身份验证:Bearer <your api key>

Query Parameters

page
integer
default:1

页码,默认1

size
integer
default:10

每页数量,默认10

Response

200
application/json

业务处理成功

The response is of type object.