GET
/
v1
/
knowledgebases
/
{vector_id}
curl --request GET \
  --url https://api.bland.ai/v1/knowledgebases/{vector_id} \
  --header 'authorization: <authorization>'
{
    {
        "vector_id": "KB-55e64dae-1585-4632-ae97-c909c288c6bc",
        "name": "Bland AI FAQs",
        "description": "Business facts, policies, and frequently asked questions for Bland AI."
    }
}

Headers

authorization
string
required

Your API key for authentication.

Path Parameters

vector_id
string
required

The vector_id of the knowledge base to view.

Query Parameters

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

Response

vector_id
string

The unique identifier for the knowledge base.

name
string

The name of the knowledge base.

description
string

A description of the knowledge base.

{
    {
        "vector_id": "KB-55e64dae-1585-4632-ae97-c909c288c6bc",
        "name": "Bland AI FAQs",
        "description": "Business facts, policies, and frequently asked questions for Bland AI."
    }
}