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

# List Vector Details

> View the details for a specific vector store.

### Headers

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

### Path Parameters

<ParamField header="vector_id" type="string" required={true}>
  The `vector_id` of the vector store to view.
</ParamField>

### Query Parameters

<ParamField header="include_text" type="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.
</ParamField>

### Response

<ResponseField name="name" type="string">
  The name of the vector store.
</ResponseField>

<ResponseField name="description" type="string">
  A description of the vector store.
</ResponseField>

<ResponseExample>
  ```json Response
  {
      {
          "vector_id": "KB-55e64dae-1585-4632-ae97-c909c288c6bc",
          "name": "Luly AI FAQs",
          "description": "Business facts, policies, and frequently asked questions for Luly AI."
      }
  }
  ```
</ResponseExample>
