Get the current processing status of a file in a knowledge store.
GEThttps://api.aitronos.com/v1/organizations/{organization_id}/stores/{store_id}/files/{file_id}/status
Returns the processing status of a file including progress percentage, current step, and any error messages. Use this endpoint to poll for processing completion after uploading a file.
organization_id string required
The unique identifier of the organization (format: org_*).
store_id string required
The unique identifier of the vector store.
file_id string required
The unique identifier of the file (format: file_*).
The processing status object with progress details.
cURL
- Bash
- Python
- Python
- JavaScript
curl -s "https://api.aitronos.com/v1/organizations/org_xyz789/stores/vs_abc123/files/file_abc123def456/status" \
-H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool