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",
  "dataset_name": "",
  "normalized_dataset_name": "product_knowledge_base",
  "status": "completed",
  "progress": 100,
  "datasources": [],
  "datasource_count": 2,
  "total_datasources": 2,
  "ingested_datasources": [
    {
      "id": "ds_123",
      "name": "manual.pdf",
      "type": "file-upload",
      "status": "active"
    }
  ],
  "failed_datasources": [],
  "datasource_errors": {},
  "datasource_snapshots": {
    "ds_123": {
      "id": "ds_123",
      "name": "manual.pdf",
      "type": "file-upload",
      "ingestion_status": "ingested"
    }
  },
  "success_rate": 100,
  "chunking_strategy": {
    "strategy": "recursive",
    "chunk_size": 500,
    "chunk_overlap": 50,
    "split_by": "word",
    "recursive_separators": ["\n\n", "\n", ". ", " "]
  },
  "embedding_config": {
    "provider": "mistral",
    "model": "mistral-embed",
    "dimensions": 1024
  },
  "llm_config": {},
  "processing_metadata": {},
  "created_by_name": "John Doe",
  "company_name": "Acme Corp",
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:35:00Z"
}