# Get vector store Retrieve a single vector store by its ID. Returns the full details of a specific vector store, including its file count, data size, and access mode. #### Path Parameters **`organization_id`** string required The unique identifier of the organization (format: `org_*`). **`store_id`** string required The unique identifier of the vector store (format: `vs_*`). ## Returns A vector store object. Request ```bash cURL curl https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/stores/vs_store123 \ -H "Authorization: Bearer $ACCESS_TOKEN" ``` ```python Python SDK from aitronos import Aitronos client = Aitronos(api_key="your-api-key") result = client.knowledge.get_store( organization_id="org_xyz789", store_id="vs_store123", ) print(result) ``` ```python Python import requests org_id = "org_xyz789" store_id = "vs_store123" url = f"https://api.aitronos.com/v1/organizations/{org_id}/knowledge/stores/{store_id}" headers = {"Authorization": "Bearer YOUR_ACCESS_TOKEN"} response = requests.get(url, headers=headers) print(response.json()) ``` ```javascript JavaScript const orgId = "org_xyz789"; const storeId = "vs_store123"; const response = await fetch( `https://api.aitronos.com/v1/organizations/${orgId}/knowledge/stores/${storeId}`, { headers: { "Authorization": `Bearer ${accessToken}` }, } ); const data = await response.json(); console.log(data); ``` Response ```json 200 OK { "id": "vs_store123", "name": "API Documentation Store", "description": "Vector store for API docs", "slice_id": "kslice_abc123", "organization_id": "org_xyz789", "created_by": "usr_owner1", "is_active": true, "access_mode": "organization", "file_count": 15, "data_size": 1048576, "created_at": "2025-06-15T10:00:00Z", "updated_at": "2025-06-15T10:00:00Z" } ``` ```json 404 Error { "success": false, "error": { "code": "VECTOR_STORE_NOT_FOUND", "message": "The requested vector store could not be found.", "system_message": "Vector store not found", "type": "client_error", "status": 404, "details": { "store_id": "vs_invalid" }, "trace_id": "abc-123-def", "timestamp": "2025-11-02T08:21:45Z" } } ``` ## Related Resources - [List All Stores](/docs/api-reference/knowledge/list-stores) - [List Stores by Slice](/docs/api-reference/knowledge/list-stores-by-slice) - [Create Store in Slice](/docs/api-reference/knowledge/create-store) - [Update Store](/docs/api-reference/knowledge/update-store) - [Delete Store](/docs/api-reference/knowledge/delete-store)