List all files in a knowledge store with optional filtering and pagination.
GEThttps://api.aitronos.com/v1/organizations/{organization_id}/stores/{store_id}/files
Returns a paginated list of files in the specified store. You can filter by processing status and search by filename.
organization_id string required
The unique identifier of the organization (format: org_*).
store_id string required
The unique identifier of the vector store.
status string optional
Filter by processing status. Allowed values: pending, processing, completed, failed.
search string optional
Search by filename (case-insensitive substring match).
skip integer optional · Defaults to 0
Number of items to skip for pagination.
limit integer optional · Defaults to 20
Maximum number of items to return (1-100).
A paginated list of file objects with processing details.
cURL
- Bash
- Python
- Python
- JavaScript
curl -s "https://api.aitronos.com/v1/organizations/org_xyz789/stores/vs_abc123/files?status=completed&limit=10" \
-H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool