Skip to main content
Retrieve knowledge base details including processing status and data sources.
kb_id
string
required
The knowledge base ID
curl -X GET https://api-be.atthene.com/api/v1/knowledge-bases/kb_123/ \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "id": "kb_123",
  "name": "Product Knowledge Base",
  "description": "Product documentation and guides",
  "processing_engine": "milvus",
  "status": "completed",
  "progress": 100,
  "collection_count": 2,
  "ingested_datasources": [
    {
      "id": "cds_1",
      "data_source": "file_123",
      "data_source_name": "manual.pdf",
      "status": "completed"
    }
  ],
  "failed_datasources": [],
  "success_rate": 100,
  "created_by_name": "John Doe",
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:35:00Z"
}