Get Video Detections
Retrieve all video detection runs associated with a specific file. Each detection run corresponds to one processing job executed against that file (for example, a video redaction pass that looked for faces or license plates). This endpoint returns the raw detection run records exactly as stored, including the per-run detections array (which may be empty [] until a worker populates results) and the creation timestamp. Use this endpoint to: (1) list historical detection/redaction attempts for a file; (2) render overlays from the saved detections array; (3) debug or audit processing for a single file.
Notes:
- This route returns all runs for the file (no server-side pagination in the current implementation).
- Field names mirror the database table:
id,tenant_id,file_id,case_id,doc_id,detections,created_at. case_idcan benullwhen a detection run is not linked to a case.detectionsis a JSON array (serialized), typically an array of objects describing entities per time/frame. Its shape is application-defined and may evolve without breaking this contract.
Authorizations
Path Parameters
The unique File ID whose detection runs you want to list.
Response
Successfully retrieved all detection runs tied to the specified file. The response includes the raw detection run records as stored in the system.
Array of detection run records for the provided file.

