Retrieve detailed information about a specific file
/files/{file_id}
Retrieve detailed information about a specific file, including metadata, processing status, and validation results.
Parameter | Type | Required | Description |
---|---|---|---|
file_id | string | Yes | Unique identifier of the file |
Field | Type | Description |
---|---|---|
id | string | Unique file identifier |
filename | string | Original filename |
file_id | string | Internal file storage identifier |
type | string | Document type (auto-detected) |
status | string | Current processing status |
size | integer | File size in bytes |
created_at | string | Upload timestamp (ISO 8601) |
completed_at | string | Processing completion timestamp |
processed_data | object | Extracted document data (when processing is complete) |
Status | Description |
---|---|
pending | File uploaded, waiting for processing |
processing | Currently being processed |
completed | Processing finished successfully |
failed | Processing failed |
deleted | File has been soft-deleted |
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Unique identifier of the file
File information retrieved successfully
The response is of type object
.