> ## Documentation Index
> Fetch the complete documentation index at: https://docs.artaios.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Knowledge Base

Retrieve knowledge base details including processing status and data sources.

<ParamField path="kb_id" type="string" required>
  The knowledge base ID
</ParamField>

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET https://api.artaios.ai/api/v1/knowledge-bases/kb_123/ \
    -H "x-api-key: YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.artaios.ai/api/v1/knowledge-bases/kb_123/",
      headers={"x-api-key": "YOUR_API_KEY"}
  )
  kb = response.json()
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.artaios.ai/api/v1/knowledge-bases/kb_123/', {
    headers: {
      'x-api-key': 'YOUR_API_KEY'
    }
  });
  const kb = await response.json();
  ```
</CodeGroup>

## Response

```json theme={null}
{
  "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"
}
```
