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

# Get Knowledge Base

> Retrieves details of a specific knowledge base by ID

This endpoint returns the details of a specific knowledge base.

### Path Parameters

<ParamField path="id" type="integer" required>
  The unique identifier of the knowledge base
</ParamField>

### Response Fields

<ResponseField name="data" type="object">
  The knowledge base object

  <Expandable title="Knowledge Base Properties">
    <ResponseField name="id" type="integer">
      The unique identifier of the knowledge base
    </ResponseField>

    <ResponseField name="name" type="string">
      The name of the knowledge base
    </ResponseField>

    <ResponseField name="description" type="string">
      Optional description of the knowledge base
    </ResponseField>

    <ResponseField name="status" type="string">
      Current status: `empty`, `processing`, `active` or `failed`
    </ResponseField>

    <ResponseField name="status_label" type="string">
      Human-readable status label
    </ResponseField>

    <ResponseField name="documents_count" type="integer">
      Number of documents in this knowledge base
    </ResponseField>

    <ResponseField name="assistants_count" type="integer">
      Number of assistants using this knowledge base
    </ResponseField>

    <ResponseField name="created_at" type="string">
      ISO 8601 timestamp of creation
    </ResponseField>

    <ResponseField name="updated_at" type="string">
      ISO 8601 timestamp of last update
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "data": {
      "id": 1,
      "name": "Product Documentation",
      "description": "Technical documentation for our products",
      "status": "active",
      "status_label": "Active",
      "documents_count": 5,
      "assistants_count": 2,
      "created_at": "2025-01-05T10:30:00.000000Z",
      "updated_at": "2025-01-08T14:20:00.000000Z"
    }
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "error": "Knowledgebase not found."
  }
  ```
</ResponseExample>

<Tip>
  Related pages: [Introduction](/en/api-reference/introduction) and [Authentication Guide](/en/developers/authentication-guide), and [API Integration Examples](/en/developers/api-integration-examples).
</Tip>
