Skip to content
Last updated

Get details about a specific vector store by its ID.

GEThttps://api.aitronos.com/v1/organizations/{organization_id}/vector-stores/{vector_store_id}

Retrieve metadata, file count, and access settings for a vector store.

Path Parameters

organization_id string required

The unique identifier of the organization.

vector_store_id string required

The unique identifier of the vector store.


Returns

A Vector Store object.

cURL
curl "https://api.aitronos.com/v1/organizations/{organization_id}/vector-stores/{vector_store_id}" \
  -H "X-API-Key: $FREDDY_API_KEY"

Response:

200 OK
{
  "message": "Vector store retrieved successfully",
  "data": {
    "id": "vs_456def",
    "name": "Product Documentation",
    "description": "Knowledge base for product support",
    "organization_id": "org_123abc",
    "file_count": 15,
    "total_size_bytes": 10485760,
    "access_mode": "organization",
    "created_at": "2026-01-10T09:00:00Z",
    "updated_at": "2026-01-16T10:30:00Z"
  }
}