Obter informações do armazenamento vetorial
get
Retrieve information about the vector store associated with the API key.
Header parameters
x-api-keystringRequired
The API key for authentication.
Responses
200
Vector store information retrieved successfully.
application/json
get
/vector-stores/me200
Vector store information retrieved successfully.
Exemplos de Requisições
curl -X GET \
https://api.rememberizer.ai/api/v1/vector-stores/me \
-H "x-api-key: SUA_CHAVE_API"const getVectorStoreInfo = async () => {
const response = await fetch('https://api.rememberizer.ai/api/v1/vector-stores/me', {
method: 'GET',
headers: {
'x-api-key': 'SUA_CHAVE_API'
}
});
const data = await response.json();
console.log(data);
};
getVectorStoreInfo();import requests
def get_vector_store_info():
headers = {
"x-api-key": "SUA_CHAVE_API"
}
response = requests.get(
"https://api.rememberizer.ai/api/v1/vector-stores/me",
headers=headers
)
data = response.json()
print(data)
get_vector_store_info()Formato de Resposta
Autenticação
Respostas de Erro
Código de Status
Descrição
Last updated