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

# List Knowledge Bases

> List all knowledge bases in your account.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

<ParamField header="include-text" type="boolean" default="false">
  Include the full text of the documents stored in the knowledge base. This can be useful for debugging, but may return large amounts of data.
</ParamField>

### Response

<ResponseField name="vectors" type="array">
  An array of objects, for each knowledge base in your account.

  <ResponseField name="vectors[].vector_id" type="string">
    The unique identifier for the knowledge base.
  </ResponseField>

  <ResponseField name="vectors[].name" type="string">
    The name of the knowledge base.
  </ResponseField>

  <ResponseField name="vectors[].description" type="string">
    A description of the knowledge base.
  </ResponseField>
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
      "vectors": [
          {
              "vector_id": "KB-55e64dae-1585-4632-bc97-c909c288c6bc",
              "name": "Bland AI FAQs",
              "description": "Business facts, policies, and frequently asked questions for Bland AI."
          }
      ]
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
