Access files from outside nodered

Hello,
I have an HTLM node that gets a binary file as a repsonse.
The file is located in something like:

/data/folder/file.mp3

Is there a way to get access to that file from outside nodered? (same network)
With http request for example. Something like:

http://nodered_ip/data/file.mp3

That does not work by the way.

Thanks in advance

You can use http endpoints to server file Serve a local file : Node-RED. You then make a http request to the endpoint, the endpoint flow can then make a http request to get your file and return it with the http response node.

[edit]
You can also server files from a http static folder Configuration : Node-RED.

Will give that a try.
Thank you