# 벡터 저장소 정보 가져오기

{% openapi src="/files/fAmF2Kwil50sF5cXMoEX" path="/vector-stores/me" method="get" %}
[rememberizer\_openapi.yml](https://2913883985-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fs0e4JCKQXzEGPRlMO7nt%2Fuploads%2Fgit-blob-77b6137eeb641262ec8e531c78123c02b825b865%2Frememberizer_openapi.yml?alt=media\&token=ac0eeb18-73cf-42a3-93fe-2ff232a978a3)
{% endopenapi %}

## 예제 요청

{% tabs %}
{% tab title="cURL" %}

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

{% hint style="info" %}
`YOUR_API_KEY`를 실제 Vector Store API 키로 교체하세요.
{% endhint %}
{% endtab %}

{% tab title="JavaScript" %}

```javascript
const getVectorStoreInfo = async () => {
  const response = await fetch('https://api.rememberizer.ai/api/v1/vector-stores/me', {
    method: 'GET',
    headers: {
      'x-api-key': 'YOUR_API_KEY'
    }
  });
  
  const data = await response.json();
  console.log(data);
};

getVectorStoreInfo();
```

{% hint style="info" %}
`YOUR_API_KEY`를 실제 Vector Store API 키로 교체하세요.
{% endhint %}
{% endtab %}

{% tab title="Python" %}

```python
import requests

def get_vector_store_info():
    headers = {
        "x-api-key": "YOUR_API_KEY"
    }
    
    response = requests.get(
        "https://api.rememberizer.ai/api/v1/vector-stores/me",
        headers=headers
    )
    
    data = response.json()
    print(data)

get_vector_store_info()
```

{% hint style="info" %}
`YOUR_API_KEY`를 실제 Vector Store API 키로 교체하세요.
{% endhint %}
{% endtab %}
{% endtabs %}

## 응답 형식

```json
{
  "id": "vs_abc123",
  "name": "내 벡터 저장소",
  "description": "제품 문서를 위한 벡터 저장소",
  "embedding_model": "sentence-transformers/all-mpnet-base-v2",
  "indexing_algorithm": "ivfflat",
  "vector_dimension": 128,
  "search_metric": "cosine_distance",
  "created": "2023-06-01T10:30:00Z",
  "modified": "2023-06-15T14:45:00Z"
}
```

## 인증

이 엔드포인트는 `x-api-key` 헤더에 API 키를 사용하여 인증이 필요합니다.

## 오류 응답

| 상태 코드 | 설명                        |
| ----- | ------------------------- |
| 401   | 권한 없음 - 잘못되었거나 누락된 API 키  |
| 404   | 찾을 수 없음 - 벡터 저장소를 찾을 수 없음 |
| 500   | 내부 서버 오류                  |

이 엔드포인트는 제공된 API 키와 관련된 벡터 저장소에 대한 정보를 검색합니다. 이는 사용 중인 임베딩 모델, 차원 수 및 검색 메트릭을 포함한 구성 세부정보를 확인하는 데 유용합니다. 이 정보는 검색 쿼리를 최적화하고 벡터 저장소의 기능을 이해하는 데 유용할 수 있습니다.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.rememberizer.ai/ko/undefined-1/api-docs/vector-store/get-vector-stores-information.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
