Get processing logs and history for a file.
GEThttps://api.aitronos.com/v1/organizations/{organization_id}/vector-stores/{vector_store_id}/files/{file_id}/logs
Retrieve detailed processing logs including timeline events, queue position, error messages, and processing statistics. Useful for debugging processing issues.
organization_id string required
The unique identifier of the organization.
vector_store_id string required
The unique identifier of the vector store.
file_id string required
The unique identifier of the file.
A comprehensive log object containing:
- Processing timeline with timestamps
- Queue information (position, total queued, workers busy)
- File metadata (filename, size, mime type)
- Processing statistics (chunks created, embedding model)
- Error messages if processing failed
- Estimated completion time for pending/processing files
cURL
- Bash
- Python
- Python
- JavaScript
curl -X GET "https://api.aitronos.com/v1/organizations/org_abc123/vector-stores/vs_xyz789/files/file_abc456/logs" \
-H "X-API-Key: $FREDDY_API_KEY"