> ## 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.

# Wissensdatenbank abrufen

> Ruft Details einer bestimmten Wissensdatenbank anhand der ID ab

Dieser Endpunkt gibt die Details einer bestimmten Wissensdatenbank zurück.

### Pfad-Parameter

<ParamField path="id" type="integer" required>
  Die eindeutige Kennung der Wissensdatenbank
</ParamField>

### Antwort-Felder

<ResponseField name="data" type="object">
  Das Wissensdatenbank-Objekt

  <Expandable title="Wissensdatenbank-Eigenschaften">
    <ResponseField name="id" type="integer">
      Die eindeutige Kennung der Wissensdatenbank
    </ResponseField>

    <ResponseField name="name" type="string">
      Der Name der Wissensdatenbank
    </ResponseField>

    <ResponseField name="description" type="string">
      Optionale Beschreibung der Wissensdatenbank
    </ResponseField>

    <ResponseField name="status" type="string">
      Aktueller Status: `empty`, `processing`, `active` oder `failed`
    </ResponseField>

    <ResponseField name="status_label" type="string">
      Menschenlesbares Status-Label
    </ResponseField>

    <ResponseField name="documents_count" type="integer">
      Anzahl der Dokumente in dieser Wissensdatenbank
    </ResponseField>

    <ResponseField name="assistants_count" type="integer">
      Anzahl der Assistenten, die diese Wissensdatenbank verwenden
    </ResponseField>

    <ResponseField name="created_at" type="string">
      ISO 8601 Zeitstempel der Erstellung
    </ResponseField>

    <ResponseField name="updated_at" type="string">
      ISO 8601 Zeitstempel der letzten Aktualisierung
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "data": {
      "id": 1,
      "name": "Produktdokumentation",
      "description": "Technische Dokumentation für unsere Produkte",
      "status": "active",
      "status_label": "Aktiv",
      "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>
  Passende Seiten: [Introduction](/de/api-reference/introduction) und [Authentication Guide](/de/developers/authentication-guide) und [API Integration Examples](/de/developers/api-integration-examples).
</Tip>
