---
title: "New Vector Store"
method: POST
path: "/vector_store/new"
tags: ["vector store management"]
---

# New Vector Store

`POST /vector_store/new`

Create a new vector store.

Parameters:
- vector_store_id: str - Unique identifier for the vector store
- custom_llm_provider: str - Provider of the vector store
- vector_store_name: Optional[str] - Name of the vector store
- vector_store_description: Optional[str] - Description of the vector store
- vector_store_metadata: Optional[Dict] - Additional metadata for the vector store

## Request body

- LiteLLMManagedVectorStore — LiteLLM managed vector store object - this is is the object stored in the database
  - `vector_store_id` string
  - `custom_llm_provider` string
  - `vector_store_name` string, nullable
  - `vector_store_description` string, nullable
  - `vector_store_metadata` union
    - object
    - string
  - `created_at` string, date-time, nullable
  - `updated_at` string, date-time, nullable
  - `litellm_credential_name` string, nullable
  - `litellm_params` object, nullable
  - `team_id` string, nullable
  - `user_id` string, nullable

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/sea-lion/apis/litellm-api.md) · [All operations](https://skmtc.net/sea-lion/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sea-lion/litellm-api/revisions/1e929292ddd5/schema)
