🔨 In Development — This section is still being developed and may change.
Get a list of all files attached to a vector store.
GEThttps://api.freddy.aitronos.com/v1/organizations/{organization_id}/vector-stores/{vector_store_id}/files
List all files currently indexed in a vector store with their processing status.
organization_id string required
The unique identifier of the organization.
vector_store_id string required
The unique identifier of the vector store.
page integer optional · Defaults to 1
Page number for pagination.
pageSize integer optional · Defaults to 20
Number of items per page.
A paginated list of files in the vector store.
Bash
- Bash
- Python
- Python
curl "https://api.freddy.aitronos.com/v1/organizations/org_abc123/vector-stores/vs_abc123/files" \
-H "X-API-Key: $FREDDY_API_KEY"{
"data": [
{
"id": "file_abc123",
"name": "product_manual.pdf",
"size": 2457600,
"mimeType": "application/pdf",
"status": "completed",
"addedAt": "2025-01-20T10:00:00Z"
},
{
"id": "file_def456",
"name": "api_docs.md",
"size": 524288,
"mimeType": "text/markdown",
"status": "processing",
"addedAt": "2025-01-20T15:30:00Z"
}
],
"total": 42,
"page": 1,
"pageSize": 20
}