GET
/
vectors
List Vector Stores
curl --request GET \
  --url https://app.luly.ai/api/vectors \
  --header 'authorization: <authorization>'
{
    "vectors": [
        {
            "vector_id": "KB-55e64dae-1585-4632-bc97-c909c288c6bc",
            "name": "luly AI FAQs",
            "description": "Business facts, policies, and frequently asked questions for Luly AI."
        }
    ]
}

Headers

authorization
string
required
Your API key for authentication.

Query Parameters

include_text
boolean
default:"false"
Include the full text of the documents stored in the vector store. This can be useful for debugging, but may return large amounts of data.

Response

vectors
array
An array of objects, for each vector store in your account.
vectors[].vector_id
string
The unique identifier for the vector store.
vectors[].name
string
The name of the vector store.
vectors[].description
string
A description of the vector store.
{
    "vectors": [
        {
            "vector_id": "KB-55e64dae-1585-4632-bc97-c909c288c6bc",
            "name": "luly AI FAQs",
            "description": "Business facts, policies, and frequently asked questions for Luly AI."
        }
    ]
}