🔨 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.
organization_id string required
The unique identifier of the organization.
vector_store_id string required
The unique identifier of the vector store.
Bash
- Bash
- Python
- Python
curl "https://api.freddy.aitronos.com/v1/organizations/org_abc123/vector-stores/vs_abc123" \
-H "X-API-Key: $FREDDY_API_KEY"{
"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
}