Get vector store's information

get

Retrieve information about the vector store associated with the API key.

Header parameters
x-api-keystringRequired

The API key for authentication.

Responses
chevron-right
200

Vector store information retrieved successfully.

application/json
idstringOptional

The ID of the vector store.

namestringOptional

The name of the vector store.

descriptionstringOptional

Description of the vector store.

embedding_modelstringOptional

The embedding model used.

indexing_algorithmstringOptional

The indexing algorithm used.

vector_dimensionintegerOptional

The dimension of the vectors.

search_metricstringOptional

The search metric used.

createdstring · date-timeOptional

Creation timestamp.

modifiedstring · date-timeOptional

Modification timestamp.

get
/vector-stores/me
200

Vector store information retrieved successfully.

Example Requests

curl -X GET \
  https://api.rememberizer.ai/api/v1/vector-stores/me \
  -H "x-api-key: YOUR_API_KEY"
circle-info

Replace YOUR_API_KEY with your actual Vector Store API key.

Response Format

Authentication

This endpoint requires authentication using an API key in the x-api-key header.

Error Responses

Status Code
Description

401

Unauthorized - Invalid or missing API key

404

Not Found - Vector Store not found

500

Internal Server Error

This endpoint retrieves information about the vector store associated with the provided API key. It's useful for checking configuration details, including the embedding model, dimensionality, and search metric being used. This information can be valuable for optimizing search queries and understanding the vector store's capabilities.

Last updated