Skip to content
Last updated

🔨 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.

Path Parameters

organization_id string required

The unique identifier of the organization.

vector_store_id string required

The unique identifier of the vector store.

Query Parameters

page integer optional · Defaults to 1

Page number for pagination.

pageSize integer optional · Defaults to 20

Number of items per page.


Returns

A paginated list of files in the vector store.

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

Response

{
  "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
}