Skip to main content
GET
/
api
/
knowledge-base
/
{id}
curl --request GET \
  --url https://zeus-api.agentspro.cn/api/knowledge-base/kb_abc123 \
  --header 'Authorization: Bearer <token>'
{
  "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"
}
Authorization
string
required
Bearer JWT Token
id
string
required
Knowledge base ID
id
string
Knowledge base unique identifier
name
string
Knowledge base name
description
string
Knowledge base description
status
string
Knowledge base status
documentCount
number
Number of documents
createdAt
string
Creation time (ISO 8601)
updatedAt
string
Last updated time (ISO 8601)
curl --request GET \
  --url https://zeus-api.agentspro.cn/api/knowledge-base/kb_abc123 \
  --header 'Authorization: Bearer <token>'
{
  "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"
}