Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Get details about a specific vector store by its ID.
GEThttps://api.freddy.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.

Bash
curl "https://api.freddy.aitronos.com/v1/organizations/org_abc123/vector-stores/vs_abc123" \
  -H "X-API-Key: $FREDDY_API_KEY"

Response

{
  "id": "vs_abc123",
  "name": "Product Documentation",
  "description": "Technical docs for all products",
  "organizationId": "org_abc123",
  "isActive": true,
  "createdAt": "2025-01-15T10:30:00Z",
  "updatedAt": "2025-01-20T14:22:00Z",
  "createdBy": "uid_user123",
  "accessMode": "organization",
  "accessDepartments": null,
  "accessUsers": null,
  "fileCount": 42,
  "dataSize": 15728640
}