curl --request GET \
--url https://zeus-api.agentspro.cn/api/knowledge-base \
--header 'Authorization: Bearer <token>'
{
"knowledge_bases": [
{
"id": "kb_abc123",
"name": "Product Docs",
"description": "Product user manual and API documentation",
"status": "active",
"documentCount": 12,
"createdAt": "2025-06-01T10:00:00Z",
"updatedAt": "2025-06-15T14:30:00Z"
}
]
}
List all knowledge bases for the current user
curl --request GET \
--url https://zeus-api.agentspro.cn/api/knowledge-base \
--header 'Authorization: Bearer <token>'
{
"knowledge_bases": [
{
"id": "kb_abc123",
"name": "Product Docs",
"description": "Product user manual and API documentation",
"status": "active",
"documentCount": 12,
"createdAt": "2025-06-01T10:00:00Z",
"updatedAt": "2025-06-15T14:30:00Z"
}
]
}
Show knowledge_base object
curl --request GET \
--url https://zeus-api.agentspro.cn/api/knowledge-base \
--header 'Authorization: Bearer <token>'
{
"knowledge_bases": [
{
"id": "kb_abc123",
"name": "Product Docs",
"description": "Product user manual and API documentation",
"status": "active",
"documentCount": 12,
"createdAt": "2025-06-01T10:00:00Z",
"updatedAt": "2025-06-15T14:30:00Z"
}
]
}